ETH Price: $2,883.60 (-8.97%)
Gas: 9 Gwei

Token

ARCHIVE (Chainback Web3 Internet Archive)
 

Overview

Max Total Supply

1,000,000,000 Chainback Web3 Internet Archive

Holders

2,386 ( 0.042%)

Market

Price

$0.00 @ 0.000000 ETH (-0.69%)

Onchain Market Cap

$995,090.00

Circulating Supply Market Cap

$0.00

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.068785449111354657 Chainback Web3 Internet Archive

Value
$0.00 ( ~0 Eth) [0.0000%]
0x75b05b242d36910646886c5098fd515ed9974544
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Chainback stands as a beacon of innovation and adaptability. This strategic evolution not only redefines Chainback's role in the technology sector but also underscores its commitment to staying ahead in an ever-changing digital landscape.

Market

Volume (24H):$4,788.81
Market Capitalization:$0.00
Circulating Supply:0.00 Chainback Web3 Internet Archive
Market Data Source: Coinmarketcap

# Exchange Pair Price  24H Volume % Volume
1
Uniswap V2 (Ethereum)
0XC7F950271D118A5BDF250DFFC39128DCCED8472C-0XC02AAA39B223FE8D0A0E5C4F27EAD9083C756CC2$0.001
0.0000003 Eth
$4,805.38
5,009,431.987 0XC7F950271D118A5BDF250DFFC39128DCCED8472C
100.0000%

Contract Source Code Verified (Exact Match)

Contract Name:
Chainback

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-12-29
*/

// Chainback - Web3 Internet Archive
// https://chainback.org
// https://t.me/chainback_archive

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

interface IUniswapV2Factory {
    function createPair(address tokenA, address tokenB)
        external
        returns (address pair);
}

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

    function WETH() external pure returns (address);

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

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;
}

interface IUniswapV2Pair {
    function sync() external;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @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;
        }
    }
}

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

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

    bool private swapping;

    address public marketingWallet;
    address public devWallet;

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

    uint256 public percentForLPBurn = 0; // 0 = 0%
    bool public lpBurnEnabled = true;
    uint256 public lpBurnFrequency = 360000000000000 seconds;
    uint256 public lastLpBurnTime;

    uint256 public manualBurnFrequency = 300000000000000 minutes;
    uint256 public lastManualLpBurnTime;

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

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

    uint256 public buyTotalFees;
    uint256 public constant buyMarketingFee = 2;
    uint256 public constant buyLiquidityFee = 0;
    uint256 public constant buyDevFee = 2;

    uint256 public sellTotalFees;
    uint256 public constant sellMarketingFee = 2;
    uint256 public constant sellLiquidityFee = 0;
    uint256 public constant sellDevFee = 2;

    uint256 public tokensForMarketing;
    uint256 public tokensForLiquidity;
    uint256 public tokensForDev;

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

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

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

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

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

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

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

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

    event AutoNukeLP();

    event ManualNukeLP();

    event BoughtEarly(address indexed sniper);

    constructor() ERC20("ARCHIVE", "Chainback Web3 Internet Archive") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

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

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

        uint256 totalSupply = 1_000_000_000 * 1e18; // 1 billion total supply

        maxTransactionAmount = 30_000_000 * 1e18; //3% from total supply maxTransactionAmountTxn
        maxWallet = 30_000_000 * 1e18; // 3% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 3) / 10000; // 0.03% swap wallet

        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;

        marketingWallet = address(0x2AedE79D046b1a7975FB830Af0a820526Dc894E2); // set as marketing wallet
        devWallet = address(0x2AedE79D046b1a7975FB830Af0a820526Dc894E2); // set as dev wallet

        // exclude from paying fees or having max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);

        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);

        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(msg.sender, totalSupply);
    }

    receive() external payable {}

    // once enabled, can never be turned off
    function startTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
        lastLpBurnTime = block.timestamp;
    }

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

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

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

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

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

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

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

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

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

        _setAutomatedMarketMakerPair(pair, value);
    }

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

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

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

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

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

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

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

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

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

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

        if (
            !swapping &&
            automatedMarketMakerPairs[to] &&
            lpBurnEnabled &&
            block.timestamp >= lastLpBurnTime + lpBurnFrequency &&
            !_isExcludedFromFees[from]
        ) {
            autoBurnLiquidityPairTokens();
        }

        bool takeFee = !swapping;

        // if any account belongs to _isExcludedFromFee account then remove the fee
        if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }

        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
                tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;
                tokensForDev += (fees * sellDevFee) / sellTotalFees;
                tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForDev += (fees * buyDevFee) / buyTotalFees;
                tokensForMarketing += (fees * buyMarketingFee) / buyTotalFees;
            }

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

            amount -= fees;
        }

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

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

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

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

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

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

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

        if (contractBalance == 0 || totalTokensToSwap == 0) {
            return;
        }

        if (contractBalance > swapTokensAtAmount * 20) {
            contractBalance = swapTokensAtAmount * 20;
        }

        // Halve the amount of liquidity tokens
        uint256 liquidityTokens = (contractBalance * tokensForLiquidity) /
            totalTokensToSwap /
            2;
        uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens);

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

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

        uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div(
            totalTokensToSwap
        );
        uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap);

        uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev;

        tokensForLiquidity = 0;
        tokensForMarketing = 0;
        tokensForDev = 0;

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

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

        (success, ) = address(marketingWallet).call{
            value: address(this).balance
        }("");
    }

    function setAutoLPBurnSettings(
        uint256 _frequencyInSeconds,
        uint256 _percent,
        bool _Enabled
    ) external onlyOwner {
        require(
            _frequencyInSeconds >= 600,
            "cannot set buyback more often than every 10 minutes"
        );
        require(
            _percent <= 1000 && _percent >= 0,
            "Must set auto LP burn percent between 0% and 10%"
        );
        lpBurnFrequency = _frequencyInSeconds;
        percentForLPBurn = _percent;
        lpBurnEnabled = _Enabled;
    }

    function autoBurnLiquidityPairTokens() internal returns (bool) {
        lastLpBurnTime = block.timestamp;

        // get balance of liquidity pair
        uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair);

        // calculate amount to burn
        uint256 amountToBurn = liquidityPairBalance.mul(percentForLPBurn).div(
            10000
        );

        // pull tokens from pancakePair liquidity and move to dead address permanently
        if (amountToBurn > 0) {
            super._transfer(uniswapV2Pair, address(0xdead), amountToBurn);
        }

        //sync price since this is not in a swap transaction!
        IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair);
        pair.sync();
        emit AutoNukeLP();
        return true;
    }

    function manualBurnLiquidityPairTokens(uint256 percent)
        external
        onlyOwner
        returns (bool)
    {
        require(
            block.timestamp > lastManualLpBurnTime + manualBurnFrequency,
            "Must wait for cooldown to finish"
        );
        require(percent <= 1000, "May not nuke more than 10% of tokens in LP");
        lastManualLpBurnTime = block.timestamp;

        // get balance of liquidity pair
        uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair);

        // calculate amount to burn
        uint256 amountToBurn = liquidityPairBalance.mul(percent).div(10000);

        // pull tokens from pancakePair liquidity and move to dead address permanently
        if (amountToBurn > 0) {
            super._transfer(uniswapV2Pair, address(0xdead), amountToBurn);
        }

        //sync price since this is not in a swap transaction!
        IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair);
        pair.sync();
        emit ManualNukeLP();
        return true;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[],"name":"AutoNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sniper","type":"address"}],"name":"BoughtEarly","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[],"name":"ManualNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastManualLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"manualBurnLiquidityPairTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"percentForLPBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_frequencyInSeconds","type":"uint256"},{"internalType":"uint256","name":"_percent","type":"uint256"},{"internalType":"bool","name":"_Enabled","type":"bool"}],"name":"setAutoLPBurnSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a06040526000600c556001600d60006101000a81548160ff0219169083151502179055506601476b081e8000600e55663ff2e795f500006010556001601260006101000a81548160ff0219169083151502179055506001601260016101000a81548160ff0219169083151502179055506001601260026101000a81548160ff0219169083151502179055506001601460006101000a81548160ff021916908315150217905550348015620000b357600080fd5b506040518060400160405280600781526020017f41524348495645000000000000000000000000000000000000000000000000008152506040518060400160405280601f81526020017f436861696e6261636b205765623320496e7465726e657420417263686976650081525081600390805190602001906200013892919062000b4f565b5080600490805190602001906200015192919062000b4f565b50505062000174620001686200060f60201b60201c565b6200061760201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050620001a0816001620006dd60201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1660601b815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200021e57600080fd5b505afa15801562000233573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000259919062000c16565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620002bc57600080fd5b505afa158015620002d1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002f7919062000c16565b6040518363ffffffff1660e01b81526004016200031692919062000cf9565b602060405180830381600087803b1580156200033157600080fd5b505af115801562000346573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200036c919062000c16565b600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620003e1600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001620006dd60201b60201c565b62000416600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001620007c760201b60201c565b60006b033b2e3c9fd0803ce800000090506a18d0bf423c03d8de0000006009819055506a18d0bf423c03d8de000000600b819055506127106003826200045d919062000e4a565b62000469919062000e12565b600a8190555060026000600262000481919062000db5565b6200048d919062000db5565b601581905550600260006002620004a5919062000db5565b620004b1919062000db5565b601681905550732aede79d046b1a7975fb830af0a820526dc894e2600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550732aede79d046b1a7975fb830af0a820526dc894e2600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000583620005756200086860201b60201c565b60016200089260201b60201c565b620005963060016200089260201b60201c565b620005ab61dead60016200089260201b60201c565b620005cd620005bf6200086860201b60201c565b6001620006dd60201b60201c565b620005e0306001620006dd60201b60201c565b620005f561dead6001620006dd60201b60201c565b620006073382620009cc60201b60201c565b505062000fd2565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620006ed6200060f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620007136200086860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200076c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007639062000d43565b60405180910390fd5b80601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620008a26200060f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620008c86200086860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000921576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009189062000d43565b60405180910390fd5b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620009c0919062000d26565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000a3f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a369062000d65565b60405180910390fd5b62000a536000838362000b4560201b60201c565b806002600082825462000a67919062000db5565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000abe919062000db5565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000b25919062000d87565b60405180910390a362000b416000838362000b4a60201b60201c565b5050565b505050565b505050565b82805462000b5d9062000ef5565b90600052602060002090601f01602090048101928262000b81576000855562000bcd565b82601f1062000b9c57805160ff191683800117855562000bcd565b8280016001018555821562000bcd579182015b8281111562000bcc57825182559160200191906001019062000baf565b5b50905062000bdc919062000be0565b5090565b5b8082111562000bfb57600081600090555060010162000be1565b5090565b60008151905062000c108162000fb8565b92915050565b60006020828403121562000c2957600080fd5b600062000c398482850162000bff565b91505092915050565b62000c4d8162000eab565b82525050565b62000c5e8162000ebf565b82525050565b600062000c7360208362000da4565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600062000cb5601f8362000da4565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b62000cf38162000eeb565b82525050565b600060408201905062000d10600083018562000c42565b62000d1f602083018462000c42565b9392505050565b600060208201905062000d3d600083018462000c53565b92915050565b6000602082019050818103600083015262000d5e8162000c64565b9050919050565b6000602082019050818103600083015262000d808162000ca6565b9050919050565b600060208201905062000d9e600083018462000ce8565b92915050565b600082825260208201905092915050565b600062000dc28262000eeb565b915062000dcf8362000eeb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000e075762000e0662000f2b565b5b828201905092915050565b600062000e1f8262000eeb565b915062000e2c8362000eeb565b92508262000e3f5762000e3e62000f5a565b5b828204905092915050565b600062000e578262000eeb565b915062000e648362000eeb565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000ea05762000e9f62000f2b565b5b828202905092915050565b600062000eb88262000ecb565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000600282049050600182168062000f0e57607f821691505b6020821081141562000f255762000f2462000f89565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b62000fc38162000eab565b811462000fcf57600080fd5b50565b60805160601c6157676200101b60003960008181610f2901528181612bc501528181613fda015281816140f001528181614117015281816141b301526141da01526157676000f3fe60806040526004361061039b5760003560e01c80638da5cb5b116101dc578063bbc0c74211610102578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610d9b578063f637434214610dc4578063f8b45b0514610def578063fe72b27a14610e1a576103a2565b8063dd62ed3e14610cdd578063e2f4560514610d1a578063e884f26014610d45578063f11a24d314610d70576103a2565b8063c876d0b9116100dc578063c876d0b914610c1f578063c8c8ebe414610c4a578063d257b34f14610c75578063d85ba06314610cb2576103a2565b8063bbc0c74214610ba2578063c024666814610bcd578063c18bc19514610bf6576103a2565b80639ec22c0e1161017a578063a4c82a0011610149578063a4c82a0014610ad4578063a9059cbb14610aff578063aacebbe314610b3c578063b62496f514610b65576103a2565b80639ec22c0e14610a165780639fccce3214610a41578063a0d82dc514610a6c578063a457c2d714610a97576103a2565b8063924de9b7116101b6578063924de9b71461096e57806395d89b41146109975780639a7a23d6146109c25780639c3b4fdc146109eb576103a2565b80638da5cb5b146108ed5780638ea5220f146109185780639213691314610943576103a2565b80632e82f1a0116102c15780636ddd17131161025f578063751039fc1161022e578063751039fc146108435780637571336a1461086e57806375f0a874146108975780637bce5a04146108c2576103a2565b80636ddd17131461079b57806370a08231146107c6578063715018a614610803578063730c18881461081a576103a2565b806349bd5a5e1161029b57806349bd5a5e146106dd5780634a62bb65146107085780634fbee193146107335780636a486a8e14610770576103a2565b80632e82f1a01461064a578063313ce5671461067557806339509351146106a0576103a2565b8063199ffc721161033957806323b872dd1161030857806323b872dd146105a057806327c8f835146105dd578063293230b8146106085780632c3e486c1461061f576103a2565b8063199ffc72146104f65780631a8145bb146105215780631f3fed8f1461054c578063203e727e14610577576103a2565b80631694505e116103755780631694505e1461044c57806318160ddd146104775780631816467f146104a2578063184c16c5146104cb576103a2565b806306fdde03146103a7578063095ea7b3146103d257806310d5de531461040f576103a2565b366103a257005b600080fd5b3480156103b357600080fd5b506103bc610e57565b6040516103c99190615020565b60405180910390f35b3480156103de57600080fd5b506103f960048036038101906103f4919061441a565b610ee9565b6040516104069190614fea565b60405180910390f35b34801561041b57600080fd5b5061043660048036038101906104319190614301565b610f07565b6040516104439190614fea565b60405180910390f35b34801561045857600080fd5b50610461610f27565b60405161046e9190615005565b60405180910390f35b34801561048357600080fd5b5061048c610f4b565b6040516104999190615322565b60405180910390f35b3480156104ae57600080fd5b506104c960048036038101906104c49190614301565b610f55565b005b3480156104d757600080fd5b506104e0611091565b6040516104ed9190615322565b60405180910390f35b34801561050257600080fd5b5061050b611097565b6040516105189190615322565b60405180910390f35b34801561052d57600080fd5b5061053661109d565b6040516105439190615322565b60405180910390f35b34801561055857600080fd5b506105616110a3565b60405161056e9190615322565b60405180910390f35b34801561058357600080fd5b5061059e6004803603810190610599919061447f565b6110a9565b005b3480156105ac57600080fd5b506105c760048036038101906105c2919061438f565b6111b8565b6040516105d49190614fea565b60405180910390f35b3480156105e957600080fd5b506105f26112b0565b6040516105ff9190614f6e565b60405180910390f35b34801561061457600080fd5b5061061d6112b6565b005b34801561062b57600080fd5b50610634611371565b6040516106419190615322565b60405180910390f35b34801561065657600080fd5b5061065f611377565b60405161066c9190614fea565b60405180910390f35b34801561068157600080fd5b5061068a61138a565b60405161069791906153ce565b60405180910390f35b3480156106ac57600080fd5b506106c760048036038101906106c2919061441a565b611393565b6040516106d49190614fea565b60405180910390f35b3480156106e957600080fd5b506106f261143f565b6040516106ff9190614f6e565b60405180910390f35b34801561071457600080fd5b5061071d611465565b60405161072a9190614fea565b60405180910390f35b34801561073f57600080fd5b5061075a60048036038101906107559190614301565b611478565b6040516107679190614fea565b60405180910390f35b34801561077c57600080fd5b506107856114ce565b6040516107929190615322565b60405180910390f35b3480156107a757600080fd5b506107b06114d4565b6040516107bd9190614fea565b60405180910390f35b3480156107d257600080fd5b506107ed60048036038101906107e89190614301565b6114e7565b6040516107fa9190615322565b60405180910390f35b34801561080f57600080fd5b5061081861152f565b005b34801561082657600080fd5b50610841600480360381019061083c91906144d1565b6115b7565b005b34801561084f57600080fd5b506108586116f7565b6040516108659190614fea565b60405180910390f35b34801561087a57600080fd5b50610895600480360381019061089091906143de565b611797565b005b3480156108a357600080fd5b506108ac61186e565b6040516108b99190614f6e565b60405180910390f35b3480156108ce57600080fd5b506108d7611894565b6040516108e49190615322565b60405180910390f35b3480156108f957600080fd5b50610902611899565b60405161090f9190614f6e565b60405180910390f35b34801561092457600080fd5b5061092d6118c3565b60405161093a9190614f6e565b60405180910390f35b34801561094f57600080fd5b506109586118e9565b6040516109659190615322565b60405180910390f35b34801561097a57600080fd5b5061099560048036038101906109909190614456565b6118ee565b005b3480156109a357600080fd5b506109ac611987565b6040516109b99190615020565b60405180910390f35b3480156109ce57600080fd5b506109e960048036038101906109e491906143de565b611a19565b005b3480156109f757600080fd5b50610a00611b34565b604051610a0d9190615322565b60405180910390f35b348015610a2257600080fd5b50610a2b611b39565b604051610a389190615322565b60405180910390f35b348015610a4d57600080fd5b50610a56611b3f565b604051610a639190615322565b60405180910390f35b348015610a7857600080fd5b50610a81611b45565b604051610a8e9190615322565b60405180910390f35b348015610aa357600080fd5b50610abe6004803603810190610ab9919061441a565b611b4a565b604051610acb9190614fea565b60405180910390f35b348015610ae057600080fd5b50610ae9611c35565b604051610af69190615322565b60405180910390f35b348015610b0b57600080fd5b50610b266004803603810190610b21919061441a565b611c3b565b604051610b339190614fea565b60405180910390f35b348015610b4857600080fd5b50610b636004803603810190610b5e9190614301565b611c59565b005b348015610b7157600080fd5b50610b8c6004803603810190610b879190614301565b611d95565b604051610b999190614fea565b60405180910390f35b348015610bae57600080fd5b50610bb7611db5565b604051610bc49190614fea565b60405180910390f35b348015610bd957600080fd5b50610bf46004803603810190610bef91906143de565b611dc8565b005b348015610c0257600080fd5b50610c1d6004803603810190610c18919061447f565b611eed565b005b348015610c2b57600080fd5b50610c34611ffc565b604051610c419190614fea565b60405180910390f35b348015610c5657600080fd5b50610c5f61200f565b604051610c6c9190615322565b60405180910390f35b348015610c8157600080fd5b50610c9c6004803603810190610c97919061447f565b612015565b604051610ca99190614fea565b60405180910390f35b348015610cbe57600080fd5b50610cc761216a565b604051610cd49190615322565b60405180910390f35b348015610ce957600080fd5b50610d046004803603810190610cff9190614353565b612170565b604051610d119190615322565b60405180910390f35b348015610d2657600080fd5b50610d2f6121f7565b604051610d3c9190615322565b60405180910390f35b348015610d5157600080fd5b50610d5a6121fd565b604051610d679190614fea565b60405180910390f35b348015610d7c57600080fd5b50610d8561229d565b604051610d929190615322565b60405180910390f35b348015610da757600080fd5b50610dc26004803603810190610dbd9190614301565b6122a2565b005b348015610dd057600080fd5b50610dd961239a565b604051610de69190615322565b60405180910390f35b348015610dfb57600080fd5b50610e0461239f565b604051610e119190615322565b60405180910390f35b348015610e2657600080fd5b50610e416004803603810190610e3c919061447f565b6123a5565b604051610e4e9190614fea565b60405180910390f35b606060038054610e669061561c565b80601f0160208091040260200160405190810160405280929190818152602001828054610e929061561c565b8015610edf5780601f10610eb457610100808354040283529160200191610edf565b820191906000526020600020905b815481529060010190602001808311610ec257829003601f168201915b5050505050905090565b6000610efd610ef6612692565b848461269a565b6001905092915050565b601b6020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610f5d612692565b73ffffffffffffffffffffffffffffffffffffffff16610f7b611899565b73ffffffffffffffffffffffffffffffffffffffff1614610fd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc890615222565b60405180910390fd5b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60105481565b600c5481565b60185481565b60175481565b6110b1612692565b73ffffffffffffffffffffffffffffffffffffffff166110cf611899565b73ffffffffffffffffffffffffffffffffffffffff1614611125576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111c90615222565b60405180910390fd5b670de0b6b3a76400006103e8600161113b610f4b565b61114591906154d0565b61114f919061549f565b611159919061549f565b81101561119b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119290615302565b60405180910390fd5b670de0b6b3a7640000816111af91906154d0565b60098190555050565b60006111c5848484612865565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000611210612692565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611290576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128790615202565b60405180910390fd5b6112a48561129c612692565b85840361269a565b60019150509392505050565b61dead81565b6112be612692565b73ffffffffffffffffffffffffffffffffffffffff166112dc611899565b73ffffffffffffffffffffffffffffffffffffffff1614611332576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132990615222565b60405180910390fd5b6001601260016101000a81548160ff0219169083151502179055506001601260026101000a81548160ff02191690831515021790555042600f81905550565b600e5481565b600d60009054906101000a900460ff1681565b60006012905090565b60006114356113a0612692565b8484600160006113ae612692565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114309190615449565b61269a565b6001905092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601260009054906101000a900460ff1681565b6000601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60165481565b601260029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611537612692565b73ffffffffffffffffffffffffffffffffffffffff16611555611899565b73ffffffffffffffffffffffffffffffffffffffff16146115ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a290615222565b60405180910390fd5b6115b560006135f9565b565b6115bf612692565b73ffffffffffffffffffffffffffffffffffffffff166115dd611899565b73ffffffffffffffffffffffffffffffffffffffff1614611633576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162a90615222565b60405180910390fd5b610258831015611678576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166f906150c2565b60405180910390fd5b6103e8821115801561168b575060008210155b6116ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c190615162565b60405180910390fd5b82600e8190555081600c8190555080600d60006101000a81548160ff021916908315150217905550505050565b6000611701612692565b73ffffffffffffffffffffffffffffffffffffffff1661171f611899565b73ffffffffffffffffffffffffffffffffffffffff1614611775576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176c90615222565b60405180910390fd5b6000601260006101000a81548160ff0219169083151502179055506001905090565b61179f612692565b73ffffffffffffffffffffffffffffffffffffffff166117bd611899565b73ffffffffffffffffffffffffffffffffffffffff1614611813576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180a90615222565b60405180910390fd5b80601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600281565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600281565b6118f6612692565b73ffffffffffffffffffffffffffffffffffffffff16611914611899565b73ffffffffffffffffffffffffffffffffffffffff161461196a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196190615222565b60405180910390fd5b80601260026101000a81548160ff02191690831515021790555050565b6060600480546119969061561c565b80601f01602080910402602001604051908101604052809291908181526020018280546119c29061561c565b8015611a0f5780601f106119e457610100808354040283529160200191611a0f565b820191906000526020600020905b8154815290600101906020018083116119f257829003601f168201915b5050505050905090565b611a21612692565b73ffffffffffffffffffffffffffffffffffffffff16611a3f611899565b73ffffffffffffffffffffffffffffffffffffffff1614611a95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8c90615222565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1d90615102565b60405180910390fd5b611b3082826136bf565b5050565b600281565b60115481565b60195481565b600281565b60008060016000611b59612692565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611c16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0d906152e2565b60405180910390fd5b611c2a611c21612692565b8585840361269a565b600191505092915050565b600f5481565b6000611c4f611c48612692565b8484612865565b6001905092915050565b611c61612692565b73ffffffffffffffffffffffffffffffffffffffff16611c7f611899565b73ffffffffffffffffffffffffffffffffffffffff1614611cd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ccc90615222565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601c6020528060005260406000206000915054906101000a900460ff1681565b601260019054906101000a900460ff1681565b611dd0612692565b73ffffffffffffffffffffffffffffffffffffffff16611dee611899565b73ffffffffffffffffffffffffffffffffffffffff1614611e44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3b90615222565b60405180910390fd5b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611ee19190614fea565b60405180910390a25050565b611ef5612692565b73ffffffffffffffffffffffffffffffffffffffff16611f13611899565b73ffffffffffffffffffffffffffffffffffffffff1614611f69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6090615222565b60405180910390fd5b670de0b6b3a76400006103e86005611f7f610f4b565b611f8991906154d0565b611f93919061549f565b611f9d919061549f565b811015611fdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd6906150e2565b60405180910390fd5b670de0b6b3a764000081611ff391906154d0565b600b8190555050565b601460009054906101000a900460ff1681565b60095481565b600061201f612692565b73ffffffffffffffffffffffffffffffffffffffff1661203d611899565b73ffffffffffffffffffffffffffffffffffffffff1614612093576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208a90615222565b60405180910390fd5b620186a060016120a1610f4b565b6120ab91906154d0565b6120b5919061549f565b8210156120f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ee90615182565b60405180910390fd5b6103e86005612104610f4b565b61210e91906154d0565b612118919061549f565b82111561215a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612151906151a2565b60405180910390fd5b81600a8190555060019050919050565b60155481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600a5481565b6000612207612692565b73ffffffffffffffffffffffffffffffffffffffff16612225611899565b73ffffffffffffffffffffffffffffffffffffffff161461227b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227290615222565b60405180910390fd5b6000601460006101000a81548160ff0219169083151502179055506001905090565b600081565b6122aa612692565b73ffffffffffffffffffffffffffffffffffffffff166122c8611899565b73ffffffffffffffffffffffffffffffffffffffff161461231e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231590615222565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561238e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238590615082565b60405180910390fd5b612397816135f9565b50565b600081565b600b5481565b60006123af612692565b73ffffffffffffffffffffffffffffffffffffffff166123cd611899565b73ffffffffffffffffffffffffffffffffffffffff1614612423576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241a90615222565b60405180910390fd5b6010546011546124339190615449565b4211612474576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246b90615282565b60405180910390fd5b6103e88211156124b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b090615242565b60405180910390fd5b4260118190555060003073ffffffffffffffffffffffffffffffffffffffff166370a08231600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518263ffffffff1660e01b815260040161251d9190614f6e565b60206040518083038186803b15801561253557600080fd5b505afa158015612549573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061256d91906144a8565b9050600061259861271061258a868561376090919063ffffffff16565b61377690919063ffffffff16565b905060008111156125d3576125d2600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661dead8361378c565b5b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561264257600080fd5b505af1158015612656573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561270a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612701906152a2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561277a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612771906150a2565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516128589190615322565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156128d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128cc90615262565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612945576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293c90615042565b60405180910390fd5b600081141561295f5761295a8383600061378c565b6135f4565b601260009054906101000a900460ff16156130245761297c611899565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156129ea57506129ba611899565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a235750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a5d575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a765750600660149054906101000a900460ff16155b1561302357601260019054906101000a900460ff16612b7057601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612b305750601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612b6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b6690615062565b60405180910390fd5b5b601460009054906101000a900460ff1615612d3a57612b8d611899565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612c1457507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612c6e5750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612d395743601360003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612cf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ceb906151e2565b60405180910390fd5b43601360003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612ddd5750601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612e8457600954811115612e27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e1e906151c2565b60405180910390fd5b600b54612e33836114e7565b82612e3e9190615449565b1115612e7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e76906152c2565b60405180910390fd5b613022565b601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612f275750601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612f7657600954811115612f71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f6890615142565b60405180910390fd5b613021565b601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661302057600b54612fd3836114e7565b82612fde9190615449565b111561301f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613016906152c2565b60405180910390fd5b5b5b5b5b5b600061302f306114e7565b90506000600a5482101590508080156130545750601260029054906101000a900460ff165b801561306d5750600660149054906101000a900460ff16155b80156130c35750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156131195750601a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561316f5750601a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156131b3576001600660146101000a81548160ff021916908315150217905550613197613a0d565b6000600660146101000a81548160ff0219169083151502179055505b600660149054906101000a900460ff161580156132195750601c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156132315750600d60009054906101000a900460ff165b801561324c5750600e54600f546132489190615449565b4210155b80156132a25750601a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156132b1576132af613cf4565b505b6000600660149054906101000a900460ff16159050601a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806133675750601a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561337157600090505b600081156135e457601c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156133d457506000601654115b1561349e5761340160646133f36016548861376090919063ffffffff16565b61377690919063ffffffff16565b905060165460008261341391906154d0565b61341d919061549f565b6018600082825461342e9190615449565b9250508190555060165460028261344591906154d0565b61344f919061549f565b601960008282546134609190615449565b9250508190555060165460028261347791906154d0565b613481919061549f565b601760008282546134929190615449565b925050819055506135c0565b601c60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156134f957506000601554115b156135bf5761352660646135186015548861376090919063ffffffff16565b61377690919063ffffffff16565b905060155460008261353891906154d0565b613542919061549f565b601860008282546135539190615449565b9250508190555060155460028261356a91906154d0565b613574919061549f565b601960008282546135859190615449565b9250508190555060155460028261359c91906154d0565b6135a6919061549f565b601760008282546135b79190615449565b925050819055505b5b60008111156135d5576135d487308361378c565b5b80856135e1919061552a565b94505b6135ef87878761378c565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000818361376e91906154d0565b905092915050565b60008183613784919061549f565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156137fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137f390615262565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561386c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161386390615042565b60405180910390fd5b613877838383613ecf565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156138fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138f490615122565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546139909190615449565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516139f49190615322565b60405180910390a3613a07848484613ed4565b50505050565b6000613a18306114e7565b90506000601954601754601854613a2f9190615449565b613a399190615449565b9050600080831480613a4b5750600082145b15613a5857505050613cf2565b6014600a54613a6791906154d0565b831115613a80576014600a54613a7d91906154d0565b92505b600060028360185486613a9391906154d0565b613a9d919061549f565b613aa7919061549f565b90506000613abe8286613ed990919063ffffffff16565b90506000479050613ace82613eef565b6000613ae38247613ed990919063ffffffff16565b90506000613b0e87613b006017548561376090919063ffffffff16565b61377690919063ffffffff16565b90506000613b3988613b2b6019548661376090919063ffffffff16565b61377690919063ffffffff16565b90506000818385613b4a919061552a565b613b54919061552a565b9050600060188190555060006017819055506000601981905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613bb490614f59565b60006040518083038185875af1925050503d8060008114613bf1576040519150601f19603f3d011682016040523d82523d6000602084013e613bf6565b606091505b505080985050600087118015613c0c5750600081115b15613c5957613c1b87826141ad565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601854604051613c5093929190615397565b60405180910390a15b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613c9f90614f59565b60006040518083038185875af1925050503d8060008114613cdc576040519150601f19603f3d011682016040523d82523d6000602084013e613ce1565b606091505b505080985050505050505050505050505b565b600042600f8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a08231600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518263ffffffff1660e01b8152600401613d5a9190614f6e565b60206040518083038186803b158015613d7257600080fd5b505afa158015613d86573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613daa91906144a8565b90506000613dd7612710613dc9600c548561376090919063ffffffff16565b61377690919063ffffffff16565b90506000811115613e1257613e11600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661dead8361378c565b5b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015613e8157600080fd5b505af1158015613e95573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b60008183613ee7919061552a565b905092915050565b6000600267ffffffffffffffff811115613f32577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015613f605781602001602082028036833780820191505090505b5090503081600081518110613f9e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561403e57600080fd5b505afa158015614052573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190614076919061432a565b816001815181106140b0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050614115307f00000000000000000000000000000000000000000000000000000000000000008461269a565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161417795949392919061533d565b600060405180830381600087803b15801561419157600080fd5b505af11580156141a5573d6000803e3d6000fd5b505050505050565b6141d8307f00000000000000000000000000000000000000000000000000000000000000008461269a565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b815260040161423f96959493929190614f89565b6060604051808303818588803b15801561425857600080fd5b505af115801561426c573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906142919190614520565b5050505050565b6000813590506142a7816156ec565b92915050565b6000815190506142bc816156ec565b92915050565b6000813590506142d181615703565b92915050565b6000813590506142e68161571a565b92915050565b6000815190506142fb8161571a565b92915050565b60006020828403121561431357600080fd5b600061432184828501614298565b91505092915050565b60006020828403121561433c57600080fd5b600061434a848285016142ad565b91505092915050565b6000806040838503121561436657600080fd5b600061437485828601614298565b925050602061438585828601614298565b9150509250929050565b6000806000606084860312156143a457600080fd5b60006143b286828701614298565b93505060206143c386828701614298565b92505060406143d4868287016142d7565b9150509250925092565b600080604083850312156143f157600080fd5b60006143ff85828601614298565b9250506020614410858286016142c2565b9150509250929050565b6000806040838503121561442d57600080fd5b600061443b85828601614298565b925050602061444c858286016142d7565b9150509250929050565b60006020828403121561446857600080fd5b6000614476848285016142c2565b91505092915050565b60006020828403121561449157600080fd5b600061449f848285016142d7565b91505092915050565b6000602082840312156144ba57600080fd5b60006144c8848285016142ec565b91505092915050565b6000806000606084860312156144e657600080fd5b60006144f4868287016142d7565b9350506020614505868287016142d7565b9250506040614516868287016142c2565b9150509250925092565b60008060006060848603121561453557600080fd5b6000614543868287016142ec565b9350506020614554868287016142ec565b9250506040614565868287016142ec565b9150509250925092565b600061457b8383614587565b60208301905092915050565b6145908161555e565b82525050565b61459f8161555e565b82525050565b60006145b0826153f9565b6145ba818561541c565b93506145c5836153e9565b8060005b838110156145f65781516145dd888261456f565b97506145e88361540f565b9250506001810190506145c9565b5085935050505092915050565b61460c81615570565b82525050565b61461b816155b3565b82525050565b61462a816155d7565b82525050565b600061463b82615404565b6146458185615438565b93506146558185602086016155e9565b61465e816156db565b840191505092915050565b6000614676602383615438565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006146dc601683615438565b91507f54726164696e67206973206e6f74206163746976652e000000000000000000006000830152602082019050919050565b600061471c602683615438565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614782602283615438565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006147e8603383615438565b91507f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008301527f616e206576657279203130206d696e75746573000000000000000000000000006020830152604082019050919050565b600061484e602483615438565b91507f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008301527f302e3525000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006148b4603983615438565b91507f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008301527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006020830152604082019050919050565b600061491a602683615438565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614980603683615438565b91507f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008301527f206d61785472616e73616374696f6e416d6f756e742e000000000000000000006020830152604082019050919050565b60006149e6603083615438565b91507f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008301527f747765656e20302520616e6420313025000000000000000000000000000000006020830152604082019050919050565b6000614a4c603583615438565b91507f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008301527f20302e3030312520746f74616c20737570706c792e00000000000000000000006020830152604082019050919050565b6000614ab2603483615438565b91507f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008301527f6e20302e352520746f74616c20737570706c792e0000000000000000000000006020830152604082019050919050565b6000614b18603583615438565b91507f427579207472616e7366657220616d6f756e742065786365656473207468652060008301527f6d61785472616e73616374696f6e416d6f756e742e00000000000000000000006020830152604082019050919050565b6000614b7e604983615438565b91507f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008301527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208301527f20616c6c6f7765642e00000000000000000000000000000000000000000000006040830152606082019050919050565b6000614c0a602883615438565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614c70602083615438565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000614cb0602a83615438565b91507f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008301527f6b656e7320696e204c50000000000000000000000000000000000000000000006020830152604082019050919050565b6000614d16602583615438565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614d7c602083615438565b91507f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e6973686000830152602082019050919050565b6000614dbc60008361542d565b9150600082019050919050565b6000614dd6602483615438565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614e3c601383615438565b91507f4d61782077616c6c6574206578636565646564000000000000000000000000006000830152602082019050919050565b6000614e7c602583615438565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614ee2602f83615438565b91507f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008301527f6c6f776572207468616e20302e312500000000000000000000000000000000006020830152604082019050919050565b614f448161559c565b82525050565b614f53816155a6565b82525050565b6000614f6482614daf565b9150819050919050565b6000602082019050614f836000830184614596565b92915050565b600060c082019050614f9e6000830189614596565b614fab6020830188614f3b565b614fb86040830187614621565b614fc56060830186614621565b614fd26080830185614596565b614fdf60a0830184614f3b565b979650505050505050565b6000602082019050614fff6000830184614603565b92915050565b600060208201905061501a6000830184614612565b92915050565b6000602082019050818103600083015261503a8184614630565b905092915050565b6000602082019050818103600083015261505b81614669565b9050919050565b6000602082019050818103600083015261507b816146cf565b9050919050565b6000602082019050818103600083015261509b8161470f565b9050919050565b600060208201905081810360008301526150bb81614775565b9050919050565b600060208201905081810360008301526150db816147db565b9050919050565b600060208201905081810360008301526150fb81614841565b9050919050565b6000602082019050818103600083015261511b816148a7565b9050919050565b6000602082019050818103600083015261513b8161490d565b9050919050565b6000602082019050818103600083015261515b81614973565b9050919050565b6000602082019050818103600083015261517b816149d9565b9050919050565b6000602082019050818103600083015261519b81614a3f565b9050919050565b600060208201905081810360008301526151bb81614aa5565b9050919050565b600060208201905081810360008301526151db81614b0b565b9050919050565b600060208201905081810360008301526151fb81614b71565b9050919050565b6000602082019050818103600083015261521b81614bfd565b9050919050565b6000602082019050818103600083015261523b81614c63565b9050919050565b6000602082019050818103600083015261525b81614ca3565b9050919050565b6000602082019050818103600083015261527b81614d09565b9050919050565b6000602082019050818103600083015261529b81614d6f565b9050919050565b600060208201905081810360008301526152bb81614dc9565b9050919050565b600060208201905081810360008301526152db81614e2f565b9050919050565b600060208201905081810360008301526152fb81614e6f565b9050919050565b6000602082019050818103600083015261531b81614ed5565b9050919050565b60006020820190506153376000830184614f3b565b92915050565b600060a0820190506153526000830188614f3b565b61535f6020830187614621565b818103604083015261537181866145a5565b90506153806060830185614596565b61538d6080830184614f3b565b9695505050505050565b60006060820190506153ac6000830186614f3b565b6153b96020830185614f3b565b6153c66040830184614f3b565b949350505050565b60006020820190506153e36000830184614f4a565b92915050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b60006154548261559c565b915061545f8361559c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156154945761549361564e565b5b828201905092915050565b60006154aa8261559c565b91506154b58361559c565b9250826154c5576154c461567d565b5b828204905092915050565b60006154db8261559c565b91506154e68361559c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561551f5761551e61564e565b5b828202905092915050565b60006155358261559c565b91506155408361559c565b9250828210156155535761555261564e565b5b828203905092915050565b60006155698261557c565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60006155be826155c5565b9050919050565b60006155d08261557c565b9050919050565b60006155e28261559c565b9050919050565b60005b838110156156075780820151818401526020810190506155ec565b83811115615616576000848401525b50505050565b6000600282049050600182168061563457607f821691505b60208210811415615648576156476156ac565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b6156f58161555e565b811461570057600080fd5b50565b61570c81615570565b811461571757600080fd5b50565b6157238161559c565b811461572e57600080fd5b5056fea2646970667358221220aed64505fdcbd524174fabb28294004a18c2e9cdef8c38e3f4ecd3ba2ebbb65d64736f6c63430008000033

Deployed Bytecode

0x60806040526004361061039b5760003560e01c80638da5cb5b116101dc578063bbc0c74211610102578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610d9b578063f637434214610dc4578063f8b45b0514610def578063fe72b27a14610e1a576103a2565b8063dd62ed3e14610cdd578063e2f4560514610d1a578063e884f26014610d45578063f11a24d314610d70576103a2565b8063c876d0b9116100dc578063c876d0b914610c1f578063c8c8ebe414610c4a578063d257b34f14610c75578063d85ba06314610cb2576103a2565b8063bbc0c74214610ba2578063c024666814610bcd578063c18bc19514610bf6576103a2565b80639ec22c0e1161017a578063a4c82a0011610149578063a4c82a0014610ad4578063a9059cbb14610aff578063aacebbe314610b3c578063b62496f514610b65576103a2565b80639ec22c0e14610a165780639fccce3214610a41578063a0d82dc514610a6c578063a457c2d714610a97576103a2565b8063924de9b7116101b6578063924de9b71461096e57806395d89b41146109975780639a7a23d6146109c25780639c3b4fdc146109eb576103a2565b80638da5cb5b146108ed5780638ea5220f146109185780639213691314610943576103a2565b80632e82f1a0116102c15780636ddd17131161025f578063751039fc1161022e578063751039fc146108435780637571336a1461086e57806375f0a874146108975780637bce5a04146108c2576103a2565b80636ddd17131461079b57806370a08231146107c6578063715018a614610803578063730c18881461081a576103a2565b806349bd5a5e1161029b57806349bd5a5e146106dd5780634a62bb65146107085780634fbee193146107335780636a486a8e14610770576103a2565b80632e82f1a01461064a578063313ce5671461067557806339509351146106a0576103a2565b8063199ffc721161033957806323b872dd1161030857806323b872dd146105a057806327c8f835146105dd578063293230b8146106085780632c3e486c1461061f576103a2565b8063199ffc72146104f65780631a8145bb146105215780631f3fed8f1461054c578063203e727e14610577576103a2565b80631694505e116103755780631694505e1461044c57806318160ddd146104775780631816467f146104a2578063184c16c5146104cb576103a2565b806306fdde03146103a7578063095ea7b3146103d257806310d5de531461040f576103a2565b366103a257005b600080fd5b3480156103b357600080fd5b506103bc610e57565b6040516103c99190615020565b60405180910390f35b3480156103de57600080fd5b506103f960048036038101906103f4919061441a565b610ee9565b6040516104069190614fea565b60405180910390f35b34801561041b57600080fd5b5061043660048036038101906104319190614301565b610f07565b6040516104439190614fea565b60405180910390f35b34801561045857600080fd5b50610461610f27565b60405161046e9190615005565b60405180910390f35b34801561048357600080fd5b5061048c610f4b565b6040516104999190615322565b60405180910390f35b3480156104ae57600080fd5b506104c960048036038101906104c49190614301565b610f55565b005b3480156104d757600080fd5b506104e0611091565b6040516104ed9190615322565b60405180910390f35b34801561050257600080fd5b5061050b611097565b6040516105189190615322565b60405180910390f35b34801561052d57600080fd5b5061053661109d565b6040516105439190615322565b60405180910390f35b34801561055857600080fd5b506105616110a3565b60405161056e9190615322565b60405180910390f35b34801561058357600080fd5b5061059e6004803603810190610599919061447f565b6110a9565b005b3480156105ac57600080fd5b506105c760048036038101906105c2919061438f565b6111b8565b6040516105d49190614fea565b60405180910390f35b3480156105e957600080fd5b506105f26112b0565b6040516105ff9190614f6e565b60405180910390f35b34801561061457600080fd5b5061061d6112b6565b005b34801561062b57600080fd5b50610634611371565b6040516106419190615322565b60405180910390f35b34801561065657600080fd5b5061065f611377565b60405161066c9190614fea565b60405180910390f35b34801561068157600080fd5b5061068a61138a565b60405161069791906153ce565b60405180910390f35b3480156106ac57600080fd5b506106c760048036038101906106c2919061441a565b611393565b6040516106d49190614fea565b60405180910390f35b3480156106e957600080fd5b506106f261143f565b6040516106ff9190614f6e565b60405180910390f35b34801561071457600080fd5b5061071d611465565b60405161072a9190614fea565b60405180910390f35b34801561073f57600080fd5b5061075a60048036038101906107559190614301565b611478565b6040516107679190614fea565b60405180910390f35b34801561077c57600080fd5b506107856114ce565b6040516107929190615322565b60405180910390f35b3480156107a757600080fd5b506107b06114d4565b6040516107bd9190614fea565b60405180910390f35b3480156107d257600080fd5b506107ed60048036038101906107e89190614301565b6114e7565b6040516107fa9190615322565b60405180910390f35b34801561080f57600080fd5b5061081861152f565b005b34801561082657600080fd5b50610841600480360381019061083c91906144d1565b6115b7565b005b34801561084f57600080fd5b506108586116f7565b6040516108659190614fea565b60405180910390f35b34801561087a57600080fd5b50610895600480360381019061089091906143de565b611797565b005b3480156108a357600080fd5b506108ac61186e565b6040516108b99190614f6e565b60405180910390f35b3480156108ce57600080fd5b506108d7611894565b6040516108e49190615322565b60405180910390f35b3480156108f957600080fd5b50610902611899565b60405161090f9190614f6e565b60405180910390f35b34801561092457600080fd5b5061092d6118c3565b60405161093a9190614f6e565b60405180910390f35b34801561094f57600080fd5b506109586118e9565b6040516109659190615322565b60405180910390f35b34801561097a57600080fd5b5061099560048036038101906109909190614456565b6118ee565b005b3480156109a357600080fd5b506109ac611987565b6040516109b99190615020565b60405180910390f35b3480156109ce57600080fd5b506109e960048036038101906109e491906143de565b611a19565b005b3480156109f757600080fd5b50610a00611b34565b604051610a0d9190615322565b60405180910390f35b348015610a2257600080fd5b50610a2b611b39565b604051610a389190615322565b60405180910390f35b348015610a4d57600080fd5b50610a56611b3f565b604051610a639190615322565b60405180910390f35b348015610a7857600080fd5b50610a81611b45565b604051610a8e9190615322565b60405180910390f35b348015610aa357600080fd5b50610abe6004803603810190610ab9919061441a565b611b4a565b604051610acb9190614fea565b60405180910390f35b348015610ae057600080fd5b50610ae9611c35565b604051610af69190615322565b60405180910390f35b348015610b0b57600080fd5b50610b266004803603810190610b21919061441a565b611c3b565b604051610b339190614fea565b60405180910390f35b348015610b4857600080fd5b50610b636004803603810190610b5e9190614301565b611c59565b005b348015610b7157600080fd5b50610b8c6004803603810190610b879190614301565b611d95565b604051610b999190614fea565b60405180910390f35b348015610bae57600080fd5b50610bb7611db5565b604051610bc49190614fea565b60405180910390f35b348015610bd957600080fd5b50610bf46004803603810190610bef91906143de565b611dc8565b005b348015610c0257600080fd5b50610c1d6004803603810190610c18919061447f565b611eed565b005b348015610c2b57600080fd5b50610c34611ffc565b604051610c419190614fea565b60405180910390f35b348015610c5657600080fd5b50610c5f61200f565b604051610c6c9190615322565b60405180910390f35b348015610c8157600080fd5b50610c9c6004803603810190610c97919061447f565b612015565b604051610ca99190614fea565b60405180910390f35b348015610cbe57600080fd5b50610cc761216a565b604051610cd49190615322565b60405180910390f35b348015610ce957600080fd5b50610d046004803603810190610cff9190614353565b612170565b604051610d119190615322565b60405180910390f35b348015610d2657600080fd5b50610d2f6121f7565b604051610d3c9190615322565b60405180910390f35b348015610d5157600080fd5b50610d5a6121fd565b604051610d679190614fea565b60405180910390f35b348015610d7c57600080fd5b50610d8561229d565b604051610d929190615322565b60405180910390f35b348015610da757600080fd5b50610dc26004803603810190610dbd9190614301565b6122a2565b005b348015610dd057600080fd5b50610dd961239a565b604051610de69190615322565b60405180910390f35b348015610dfb57600080fd5b50610e0461239f565b604051610e119190615322565b60405180910390f35b348015610e2657600080fd5b50610e416004803603810190610e3c919061447f565b6123a5565b604051610e4e9190614fea565b60405180910390f35b606060038054610e669061561c565b80601f0160208091040260200160405190810160405280929190818152602001828054610e929061561c565b8015610edf5780601f10610eb457610100808354040283529160200191610edf565b820191906000526020600020905b815481529060010190602001808311610ec257829003601f168201915b5050505050905090565b6000610efd610ef6612692565b848461269a565b6001905092915050565b601b6020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610f5d612692565b73ffffffffffffffffffffffffffffffffffffffff16610f7b611899565b73ffffffffffffffffffffffffffffffffffffffff1614610fd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc890615222565b60405180910390fd5b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60105481565b600c5481565b60185481565b60175481565b6110b1612692565b73ffffffffffffffffffffffffffffffffffffffff166110cf611899565b73ffffffffffffffffffffffffffffffffffffffff1614611125576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111c90615222565b60405180910390fd5b670de0b6b3a76400006103e8600161113b610f4b565b61114591906154d0565b61114f919061549f565b611159919061549f565b81101561119b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119290615302565b60405180910390fd5b670de0b6b3a7640000816111af91906154d0565b60098190555050565b60006111c5848484612865565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000611210612692565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611290576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128790615202565b60405180910390fd5b6112a48561129c612692565b85840361269a565b60019150509392505050565b61dead81565b6112be612692565b73ffffffffffffffffffffffffffffffffffffffff166112dc611899565b73ffffffffffffffffffffffffffffffffffffffff1614611332576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132990615222565b60405180910390fd5b6001601260016101000a81548160ff0219169083151502179055506001601260026101000a81548160ff02191690831515021790555042600f81905550565b600e5481565b600d60009054906101000a900460ff1681565b60006012905090565b60006114356113a0612692565b8484600160006113ae612692565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114309190615449565b61269a565b6001905092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601260009054906101000a900460ff1681565b6000601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60165481565b601260029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611537612692565b73ffffffffffffffffffffffffffffffffffffffff16611555611899565b73ffffffffffffffffffffffffffffffffffffffff16146115ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a290615222565b60405180910390fd5b6115b560006135f9565b565b6115bf612692565b73ffffffffffffffffffffffffffffffffffffffff166115dd611899565b73ffffffffffffffffffffffffffffffffffffffff1614611633576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162a90615222565b60405180910390fd5b610258831015611678576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166f906150c2565b60405180910390fd5b6103e8821115801561168b575060008210155b6116ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c190615162565b60405180910390fd5b82600e8190555081600c8190555080600d60006101000a81548160ff021916908315150217905550505050565b6000611701612692565b73ffffffffffffffffffffffffffffffffffffffff1661171f611899565b73ffffffffffffffffffffffffffffffffffffffff1614611775576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176c90615222565b60405180910390fd5b6000601260006101000a81548160ff0219169083151502179055506001905090565b61179f612692565b73ffffffffffffffffffffffffffffffffffffffff166117bd611899565b73ffffffffffffffffffffffffffffffffffffffff1614611813576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180a90615222565b60405180910390fd5b80601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600281565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600281565b6118f6612692565b73ffffffffffffffffffffffffffffffffffffffff16611914611899565b73ffffffffffffffffffffffffffffffffffffffff161461196a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196190615222565b60405180910390fd5b80601260026101000a81548160ff02191690831515021790555050565b6060600480546119969061561c565b80601f01602080910402602001604051908101604052809291908181526020018280546119c29061561c565b8015611a0f5780601f106119e457610100808354040283529160200191611a0f565b820191906000526020600020905b8154815290600101906020018083116119f257829003601f168201915b5050505050905090565b611a21612692565b73ffffffffffffffffffffffffffffffffffffffff16611a3f611899565b73ffffffffffffffffffffffffffffffffffffffff1614611a95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8c90615222565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1d90615102565b60405180910390fd5b611b3082826136bf565b5050565b600281565b60115481565b60195481565b600281565b60008060016000611b59612692565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611c16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0d906152e2565b60405180910390fd5b611c2a611c21612692565b8585840361269a565b600191505092915050565b600f5481565b6000611c4f611c48612692565b8484612865565b6001905092915050565b611c61612692565b73ffffffffffffffffffffffffffffffffffffffff16611c7f611899565b73ffffffffffffffffffffffffffffffffffffffff1614611cd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ccc90615222565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601c6020528060005260406000206000915054906101000a900460ff1681565b601260019054906101000a900460ff1681565b611dd0612692565b73ffffffffffffffffffffffffffffffffffffffff16611dee611899565b73ffffffffffffffffffffffffffffffffffffffff1614611e44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3b90615222565b60405180910390fd5b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611ee19190614fea565b60405180910390a25050565b611ef5612692565b73ffffffffffffffffffffffffffffffffffffffff16611f13611899565b73ffffffffffffffffffffffffffffffffffffffff1614611f69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6090615222565b60405180910390fd5b670de0b6b3a76400006103e86005611f7f610f4b565b611f8991906154d0565b611f93919061549f565b611f9d919061549f565b811015611fdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd6906150e2565b60405180910390fd5b670de0b6b3a764000081611ff391906154d0565b600b8190555050565b601460009054906101000a900460ff1681565b60095481565b600061201f612692565b73ffffffffffffffffffffffffffffffffffffffff1661203d611899565b73ffffffffffffffffffffffffffffffffffffffff1614612093576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208a90615222565b60405180910390fd5b620186a060016120a1610f4b565b6120ab91906154d0565b6120b5919061549f565b8210156120f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ee90615182565b60405180910390fd5b6103e86005612104610f4b565b61210e91906154d0565b612118919061549f565b82111561215a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612151906151a2565b60405180910390fd5b81600a8190555060019050919050565b60155481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600a5481565b6000612207612692565b73ffffffffffffffffffffffffffffffffffffffff16612225611899565b73ffffffffffffffffffffffffffffffffffffffff161461227b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227290615222565b60405180910390fd5b6000601460006101000a81548160ff0219169083151502179055506001905090565b600081565b6122aa612692565b73ffffffffffffffffffffffffffffffffffffffff166122c8611899565b73ffffffffffffffffffffffffffffffffffffffff161461231e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231590615222565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561238e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238590615082565b60405180910390fd5b612397816135f9565b50565b600081565b600b5481565b60006123af612692565b73ffffffffffffffffffffffffffffffffffffffff166123cd611899565b73ffffffffffffffffffffffffffffffffffffffff1614612423576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241a90615222565b60405180910390fd5b6010546011546124339190615449565b4211612474576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246b90615282565b60405180910390fd5b6103e88211156124b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b090615242565b60405180910390fd5b4260118190555060003073ffffffffffffffffffffffffffffffffffffffff166370a08231600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518263ffffffff1660e01b815260040161251d9190614f6e565b60206040518083038186803b15801561253557600080fd5b505afa158015612549573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061256d91906144a8565b9050600061259861271061258a868561376090919063ffffffff16565b61377690919063ffffffff16565b905060008111156125d3576125d2600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661dead8361378c565b5b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561264257600080fd5b505af1158015612656573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561270a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612701906152a2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561277a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612771906150a2565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516128589190615322565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156128d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128cc90615262565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612945576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293c90615042565b60405180910390fd5b600081141561295f5761295a8383600061378c565b6135f4565b601260009054906101000a900460ff16156130245761297c611899565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156129ea57506129ba611899565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a235750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a5d575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a765750600660149054906101000a900460ff16155b1561302357601260019054906101000a900460ff16612b7057601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612b305750601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612b6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b6690615062565b60405180910390fd5b5b601460009054906101000a900460ff1615612d3a57612b8d611899565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612c1457507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612c6e5750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612d395743601360003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612cf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ceb906151e2565b60405180910390fd5b43601360003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612ddd5750601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612e8457600954811115612e27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e1e906151c2565b60405180910390fd5b600b54612e33836114e7565b82612e3e9190615449565b1115612e7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e76906152c2565b60405180910390fd5b613022565b601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612f275750601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612f7657600954811115612f71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f6890615142565b60405180910390fd5b613021565b601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661302057600b54612fd3836114e7565b82612fde9190615449565b111561301f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613016906152c2565b60405180910390fd5b5b5b5b5b5b600061302f306114e7565b90506000600a5482101590508080156130545750601260029054906101000a900460ff165b801561306d5750600660149054906101000a900460ff16155b80156130c35750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156131195750601a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561316f5750601a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156131b3576001600660146101000a81548160ff021916908315150217905550613197613a0d565b6000600660146101000a81548160ff0219169083151502179055505b600660149054906101000a900460ff161580156132195750601c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156132315750600d60009054906101000a900460ff165b801561324c5750600e54600f546132489190615449565b4210155b80156132a25750601a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156132b1576132af613cf4565b505b6000600660149054906101000a900460ff16159050601a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806133675750601a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561337157600090505b600081156135e457601c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156133d457506000601654115b1561349e5761340160646133f36016548861376090919063ffffffff16565b61377690919063ffffffff16565b905060165460008261341391906154d0565b61341d919061549f565b6018600082825461342e9190615449565b9250508190555060165460028261344591906154d0565b61344f919061549f565b601960008282546134609190615449565b9250508190555060165460028261347791906154d0565b613481919061549f565b601760008282546134929190615449565b925050819055506135c0565b601c60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156134f957506000601554115b156135bf5761352660646135186015548861376090919063ffffffff16565b61377690919063ffffffff16565b905060155460008261353891906154d0565b613542919061549f565b601860008282546135539190615449565b9250508190555060155460028261356a91906154d0565b613574919061549f565b601960008282546135859190615449565b9250508190555060155460028261359c91906154d0565b6135a6919061549f565b601760008282546135b79190615449565b925050819055505b5b60008111156135d5576135d487308361378c565b5b80856135e1919061552a565b94505b6135ef87878761378c565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000818361376e91906154d0565b905092915050565b60008183613784919061549f565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156137fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137f390615262565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561386c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161386390615042565b60405180910390fd5b613877838383613ecf565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156138fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138f490615122565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546139909190615449565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516139f49190615322565b60405180910390a3613a07848484613ed4565b50505050565b6000613a18306114e7565b90506000601954601754601854613a2f9190615449565b613a399190615449565b9050600080831480613a4b5750600082145b15613a5857505050613cf2565b6014600a54613a6791906154d0565b831115613a80576014600a54613a7d91906154d0565b92505b600060028360185486613a9391906154d0565b613a9d919061549f565b613aa7919061549f565b90506000613abe8286613ed990919063ffffffff16565b90506000479050613ace82613eef565b6000613ae38247613ed990919063ffffffff16565b90506000613b0e87613b006017548561376090919063ffffffff16565b61377690919063ffffffff16565b90506000613b3988613b2b6019548661376090919063ffffffff16565b61377690919063ffffffff16565b90506000818385613b4a919061552a565b613b54919061552a565b9050600060188190555060006017819055506000601981905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613bb490614f59565b60006040518083038185875af1925050503d8060008114613bf1576040519150601f19603f3d011682016040523d82523d6000602084013e613bf6565b606091505b505080985050600087118015613c0c5750600081115b15613c5957613c1b87826141ad565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601854604051613c5093929190615397565b60405180910390a15b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613c9f90614f59565b60006040518083038185875af1925050503d8060008114613cdc576040519150601f19603f3d011682016040523d82523d6000602084013e613ce1565b606091505b505080985050505050505050505050505b565b600042600f8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a08231600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518263ffffffff1660e01b8152600401613d5a9190614f6e565b60206040518083038186803b158015613d7257600080fd5b505afa158015613d86573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613daa91906144a8565b90506000613dd7612710613dc9600c548561376090919063ffffffff16565b61377690919063ffffffff16565b90506000811115613e1257613e11600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661dead8361378c565b5b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015613e8157600080fd5b505af1158015613e95573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b60008183613ee7919061552a565b905092915050565b6000600267ffffffffffffffff811115613f32577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015613f605781602001602082028036833780820191505090505b5090503081600081518110613f9e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561403e57600080fd5b505afa158015614052573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190614076919061432a565b816001815181106140b0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050614115307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461269a565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161417795949392919061533d565b600060405180830381600087803b15801561419157600080fd5b505af11580156141a5573d6000803e3d6000fd5b505050505050565b6141d8307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461269a565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b815260040161423f96959493929190614f89565b6060604051808303818588803b15801561425857600080fd5b505af115801561426c573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906142919190614520565b5050505050565b6000813590506142a7816156ec565b92915050565b6000815190506142bc816156ec565b92915050565b6000813590506142d181615703565b92915050565b6000813590506142e68161571a565b92915050565b6000815190506142fb8161571a565b92915050565b60006020828403121561431357600080fd5b600061432184828501614298565b91505092915050565b60006020828403121561433c57600080fd5b600061434a848285016142ad565b91505092915050565b6000806040838503121561436657600080fd5b600061437485828601614298565b925050602061438585828601614298565b9150509250929050565b6000806000606084860312156143a457600080fd5b60006143b286828701614298565b93505060206143c386828701614298565b92505060406143d4868287016142d7565b9150509250925092565b600080604083850312156143f157600080fd5b60006143ff85828601614298565b9250506020614410858286016142c2565b9150509250929050565b6000806040838503121561442d57600080fd5b600061443b85828601614298565b925050602061444c858286016142d7565b9150509250929050565b60006020828403121561446857600080fd5b6000614476848285016142c2565b91505092915050565b60006020828403121561449157600080fd5b600061449f848285016142d7565b91505092915050565b6000602082840312156144ba57600080fd5b60006144c8848285016142ec565b91505092915050565b6000806000606084860312156144e657600080fd5b60006144f4868287016142d7565b9350506020614505868287016142d7565b9250506040614516868287016142c2565b9150509250925092565b60008060006060848603121561453557600080fd5b6000614543868287016142ec565b9350506020614554868287016142ec565b9250506040614565868287016142ec565b9150509250925092565b600061457b8383614587565b60208301905092915050565b6145908161555e565b82525050565b61459f8161555e565b82525050565b60006145b0826153f9565b6145ba818561541c565b93506145c5836153e9565b8060005b838110156145f65781516145dd888261456f565b97506145e88361540f565b9250506001810190506145c9565b5085935050505092915050565b61460c81615570565b82525050565b61461b816155b3565b82525050565b61462a816155d7565b82525050565b600061463b82615404565b6146458185615438565b93506146558185602086016155e9565b61465e816156db565b840191505092915050565b6000614676602383615438565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006146dc601683615438565b91507f54726164696e67206973206e6f74206163746976652e000000000000000000006000830152602082019050919050565b600061471c602683615438565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614782602283615438565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006147e8603383615438565b91507f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008301527f616e206576657279203130206d696e75746573000000000000000000000000006020830152604082019050919050565b600061484e602483615438565b91507f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008301527f302e3525000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006148b4603983615438565b91507f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008301527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006020830152604082019050919050565b600061491a602683615438565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614980603683615438565b91507f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008301527f206d61785472616e73616374696f6e416d6f756e742e000000000000000000006020830152604082019050919050565b60006149e6603083615438565b91507f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008301527f747765656e20302520616e6420313025000000000000000000000000000000006020830152604082019050919050565b6000614a4c603583615438565b91507f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008301527f20302e3030312520746f74616c20737570706c792e00000000000000000000006020830152604082019050919050565b6000614ab2603483615438565b91507f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008301527f6e20302e352520746f74616c20737570706c792e0000000000000000000000006020830152604082019050919050565b6000614b18603583615438565b91507f427579207472616e7366657220616d6f756e742065786365656473207468652060008301527f6d61785472616e73616374696f6e416d6f756e742e00000000000000000000006020830152604082019050919050565b6000614b7e604983615438565b91507f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008301527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208301527f20616c6c6f7765642e00000000000000000000000000000000000000000000006040830152606082019050919050565b6000614c0a602883615438565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614c70602083615438565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000614cb0602a83615438565b91507f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008301527f6b656e7320696e204c50000000000000000000000000000000000000000000006020830152604082019050919050565b6000614d16602583615438565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614d7c602083615438565b91507f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e6973686000830152602082019050919050565b6000614dbc60008361542d565b9150600082019050919050565b6000614dd6602483615438565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614e3c601383615438565b91507f4d61782077616c6c6574206578636565646564000000000000000000000000006000830152602082019050919050565b6000614e7c602583615438565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614ee2602f83615438565b91507f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008301527f6c6f776572207468616e20302e312500000000000000000000000000000000006020830152604082019050919050565b614f448161559c565b82525050565b614f53816155a6565b82525050565b6000614f6482614daf565b9150819050919050565b6000602082019050614f836000830184614596565b92915050565b600060c082019050614f9e6000830189614596565b614fab6020830188614f3b565b614fb86040830187614621565b614fc56060830186614621565b614fd26080830185614596565b614fdf60a0830184614f3b565b979650505050505050565b6000602082019050614fff6000830184614603565b92915050565b600060208201905061501a6000830184614612565b92915050565b6000602082019050818103600083015261503a8184614630565b905092915050565b6000602082019050818103600083015261505b81614669565b9050919050565b6000602082019050818103600083015261507b816146cf565b9050919050565b6000602082019050818103600083015261509b8161470f565b9050919050565b600060208201905081810360008301526150bb81614775565b9050919050565b600060208201905081810360008301526150db816147db565b9050919050565b600060208201905081810360008301526150fb81614841565b9050919050565b6000602082019050818103600083015261511b816148a7565b9050919050565b6000602082019050818103600083015261513b8161490d565b9050919050565b6000602082019050818103600083015261515b81614973565b9050919050565b6000602082019050818103600083015261517b816149d9565b9050919050565b6000602082019050818103600083015261519b81614a3f565b9050919050565b600060208201905081810360008301526151bb81614aa5565b9050919050565b600060208201905081810360008301526151db81614b0b565b9050919050565b600060208201905081810360008301526151fb81614b71565b9050919050565b6000602082019050818103600083015261521b81614bfd565b9050919050565b6000602082019050818103600083015261523b81614c63565b9050919050565b6000602082019050818103600083015261525b81614ca3565b9050919050565b6000602082019050818103600083015261527b81614d09565b9050919050565b6000602082019050818103600083015261529b81614d6f565b9050919050565b600060208201905081810360008301526152bb81614dc9565b9050919050565b600060208201905081810360008301526152db81614e2f565b9050919050565b600060208201905081810360008301526152fb81614e6f565b9050919050565b6000602082019050818103600083015261531b81614ed5565b9050919050565b60006020820190506153376000830184614f3b565b92915050565b600060a0820190506153526000830188614f3b565b61535f6020830187614621565b818103604083015261537181866145a5565b90506153806060830185614596565b61538d6080830184614f3b565b9695505050505050565b60006060820190506153ac6000830186614f3b565b6153b96020830185614f3b565b6153c66040830184614f3b565b949350505050565b60006020820190506153e36000830184614f4a565b92915050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b60006154548261559c565b915061545f8361559c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156154945761549361564e565b5b828201905092915050565b60006154aa8261559c565b91506154b58361559c565b9250826154c5576154c461567d565b5b828204905092915050565b60006154db8261559c565b91506154e68361559c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561551f5761551e61564e565b5b828202905092915050565b60006155358261559c565b91506155408361559c565b9250828210156155535761555261564e565b5b828203905092915050565b60006155698261557c565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60006155be826155c5565b9050919050565b60006155d08261557c565b9050919050565b60006155e28261559c565b9050919050565b60005b838110156156075780820151818401526020810190506155ec565b83811115615616576000848401525b50505050565b6000600282049050600182168061563457607f821691505b60208210811415615648576156476156ac565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b6156f58161555e565b811461570057600080fd5b50565b61570c81615570565b811461571757600080fd5b50565b6157238161559c565b811461572e57600080fd5b5056fea2646970667358221220aed64505fdcbd524174fabb28294004a18c2e9cdef8c38e3f4ecd3ba2ebbb65d64736f6c63430008000033

Deployed Bytecode Sourcemap

27134:18266:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9730:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12038:210;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28850:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27213:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10850:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34778:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27775:60;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27583:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28634:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28594;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32923:275;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12730:529;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27306:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31825:154;;;;;;;;;;;;;:::i;:::-;;27674:56;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27635:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10692:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13668:297;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27271:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27886:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34943:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28410:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27965:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11021:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3526:103;;;;;;;;;;;;;:::i;:::-;;42982:555;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32031:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33470:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27398:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28264:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2875:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27435:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28445:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33733:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9949:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34031:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28364:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27842:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28674:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28547:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14468:482;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27737:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11411:216;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34539:231;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29071:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27926:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33841:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33206:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28182:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27468:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32418:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28230:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11690:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27510:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32213:135;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28314:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3784:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28496:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27550:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44341:1056;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9730:100;9784:13;9817:5;9810:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9730:100;:::o;12038:210::-;12157:4;12179:39;12188:12;:10;:12::i;:::-;12202:7;12211:6;12179:8;:39::i;:::-;12236:4;12229:11;;12038:210;;;;:::o;28850:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;27213:51::-;;;:::o;10850:108::-;10911:7;10938:12;;10931:19;;10850:108;:::o;34778:157::-;3106:12;:10;:12::i;:::-;3095:23;;:7;:5;:7::i;:::-;:23;;;3087:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34885:9:::1;;;;;;;;;;;34857:38;;34874:9;34857:38;;;;;;;;;;;;34918:9;34906;;:21;;;;;;;;;;;;;;;;;;34778:157:::0;:::o;27775:60::-;;;;:::o;27583:35::-;;;;:::o;28634:33::-;;;;:::o;28594:::-;;;;:::o;32923:275::-;3106:12;:10;:12::i;:::-;3095:23;;:7;:5;:7::i;:::-;:23;;;3087:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33060:4:::1;33052;33047:1;33031:13;:11;:13::i;:::-;:17;;;;:::i;:::-;33030:26;;;;:::i;:::-;33029:35;;;;:::i;:::-;33019:6;:45;;32997:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;33183:6;33173;:17;;;;:::i;:::-;33150:20;:40;;;;32923:275:::0;:::o;12730:529::-;12870:4;12887:36;12897:6;12905:9;12916:6;12887:9;:36::i;:::-;12936:24;12963:11;:19;12975:6;12963:19;;;;;;;;;;;;;;;:33;12983:12;:10;:12::i;:::-;12963:33;;;;;;;;;;;;;;;;12936:60;;13049:6;13029:16;:26;;13007:116;;;;;;;;;;;;:::i;:::-;;;;;;;;;13159:57;13168:6;13176:12;:10;:12::i;:::-;13209:6;13190:16;:25;13159:8;:57::i;:::-;13247:4;13240:11;;;12730:529;;;;;:::o;27306:53::-;27352:6;27306:53;:::o;31825:154::-;3106:12;:10;:12::i;:::-;3095:23;;:7;:5;:7::i;:::-;:23;;;3087:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;31895:4:::1;31879:13;;:20;;;;;;;;;;;;;;;;;;31924:4;31910:11;;:18;;;;;;;;;;;;;;;;;;31956:15;31939:14;:32;;;;31825:154::o:0;27674:56::-;;;;:::o;27635:32::-;;;;;;;;;;;;;:::o;10692:93::-;10750:5;10775:2;10768:9;;10692:93;:::o;13668:297::-;13783:4;13805:130;13828:12;:10;:12::i;:::-;13855:7;13914:10;13877:11;:25;13889:12;:10;:12::i;:::-;13877:25;;;;;;;;;;;;;;;:34;13903:7;13877:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;13805:8;:130::i;:::-;13953:4;13946:11;;13668:297;;;;:::o;27271:28::-;;;;;;;;;;;;;:::o;27886:33::-;;;;;;;;;;;;;:::o;34943:126::-;35009:4;35033:19;:28;35053:7;35033:28;;;;;;;;;;;;;;;;;;;;;;;;;35026:35;;34943:126;;;:::o;28410:28::-;;;;:::o;27965:30::-;;;;;;;;;;;;;:::o;11021:177::-;11140:7;11172:9;:18;11182:7;11172:18;;;;;;;;;;;;;;;;11165:25;;11021:177;;;:::o;3526:103::-;3106:12;:10;:12::i;:::-;3095:23;;:7;:5;:7::i;:::-;:23;;;3087:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3591:30:::1;3618:1;3591:18;:30::i;:::-;3526:103::o:0;42982:555::-;3106:12;:10;:12::i;:::-;3095:23;;:7;:5;:7::i;:::-;:23;;;3087:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43184:3:::1;43161:19;:26;;43139:127;;;;;;;;;;;;:::i;:::-;;;;;;;;;43311:4;43299:8;:16;;:33;;;;;43331:1;43319:8;:13;;43299:33;43277:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;43437:19;43419:15;:37;;;;43486:8;43467:16;:27;;;;43521:8;43505:13;;:24;;;;;;;;;;;;;;;;;;42982:555:::0;;;:::o;32031:121::-;32083:4;3106:12;:10;:12::i;:::-;3095:23;;:7;:5;:7::i;:::-;:23;;;3087:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;32117:5:::1;32100:14;;:22;;;;;;;;;;;;;;;;;;32140:4;32133:11;;32031:121:::0;:::o;33470:167::-;3106:12;:10;:12::i;:::-;3095:23;;:7;:5;:7::i;:::-;:23;;;3087:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33625:4:::1;33583:31;:39;33615:6;33583:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;33470:167:::0;;:::o;27398:30::-;;;;;;;;;;;;;:::o;28264:43::-;28306:1;28264:43;:::o;2875:87::-;2921:7;2948:6;;;;;;;;;;;2941:13;;2875:87;:::o;27435:24::-;;;;;;;;;;;;;:::o;28445:44::-;28488:1;28445:44;:::o;33733:100::-;3106:12;:10;:12::i;:::-;3095:23;;:7;:5;:7::i;:::-;:23;;;3087:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33818:7:::1;33804:11;;:21;;;;;;;;;;;;;;;;;;33733:100:::0;:::o;9949:104::-;10005:13;10038:7;10031:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9949:104;:::o;34031:304::-;3106:12;:10;:12::i;:::-;3095:23;;:7;:5;:7::i;:::-;:23;;;3087:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34175:13:::1;;;;;;;;;;;34167:21;;:4;:21;;;;34145:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;34286:41;34315:4;34321:5;34286:28;:41::i;:::-;34031:304:::0;;:::o;28364:37::-;28400:1;28364:37;:::o;27842:35::-;;;;:::o;28674:27::-;;;;:::o;28547:38::-;28584:1;28547:38;:::o;14468:482::-;14588:4;14610:24;14637:11;:25;14649:12;:10;:12::i;:::-;14637:25;;;;;;;;;;;;;;;:34;14663:7;14637:34;;;;;;;;;;;;;;;;14610:61;;14724:15;14704:16;:35;;14682:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;14840:67;14849:12;:10;:12::i;:::-;14863:7;14891:15;14872:16;:34;14840:8;:67::i;:::-;14938:4;14931:11;;;14468:482;;;;:::o;27737:29::-;;;;:::o;11411:216::-;11533:4;11555:42;11565:12;:10;:12::i;:::-;11579:9;11590:6;11555:9;:42::i;:::-;11615:4;11608:11;;11411:216;;;;:::o;34539:231::-;3106:12;:10;:12::i;:::-;3095:23;;:7;:5;:7::i;:::-;:23;;;3087:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34699:15:::1;;;;;;;;;;;34656:59;;34679:18;34656:59;;;;;;;;;;;;34744:18;34726:15;;:36;;;;;;;;;;;;;;;;;;34539:231:::0;:::o;29071:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;27926:32::-;;;;;;;;;;;;;:::o;33841:182::-;3106:12;:10;:12::i;:::-;3095:23;;:7;:5;:7::i;:::-;:23;;;3087:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33957:8:::1;33926:19;:28;33946:7;33926:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;33997:7;33981:34;;;34006:8;33981:34;;;;;;:::i;:::-;;;;;;;;33841:182:::0;;:::o;33206:256::-;3106:12;:10;:12::i;:::-;3095:23;;:7;:5;:7::i;:::-;:23;;;3087:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33346:4:::1;33338;33333:1;33317:13;:11;:13::i;:::-;:17;;;;:::i;:::-;33316:26;;;;:::i;:::-;33315:35;;;;:::i;:::-;33305:6;:45;;33283:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;33447:6;33437;:17;;;;:::i;:::-;33425:9;:29;;;;33206:256:::0;:::o;28182:39::-;;;;;;;;;;;;;:::o;27468:35::-;;;;:::o;32418:497::-;32526:4;3106:12;:10;:12::i;:::-;3095:23;;:7;:5;:7::i;:::-;:23;;;3087:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;32605:6:::1;32600:1;32584:13;:11;:13::i;:::-;:17;;;;:::i;:::-;32583:28;;;;:::i;:::-;32570:9;:41;;32548:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;32760:4;32755:1;32739:13;:11;:13::i;:::-;:17;;;;:::i;:::-;32738:26;;;;:::i;:::-;32725:9;:39;;32703:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;32876:9;32855:18;:30;;;;32903:4;32896:11;;32418:497:::0;;;:::o;28230:27::-;;;;:::o;11690:201::-;11824:7;11856:11;:18;11868:5;11856:18;;;;;;;;;;;;;;;:27;11875:7;11856:27;;;;;;;;;;;;;;;;11849:34;;11690:201;;;;:::o;27510:33::-;;;;:::o;32213:135::-;32273:4;3106:12;:10;:12::i;:::-;3095:23;;:7;:5;:7::i;:::-;:23;;;3087:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;32313:5:::1;32290:20;;:28;;;;;;;;;;;;;;;;;;32336:4;32329:11;;32213:135:::0;:::o;28314:43::-;28356:1;28314:43;:::o;3784:238::-;3106:12;:10;:12::i;:::-;3095:23;;:7;:5;:7::i;:::-;:23;;;3087:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3907:1:::1;3887:22;;:8;:22;;;;3865:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;3986:28;4005:8;3986:18;:28::i;:::-;3784:238:::0;:::o;28496:44::-;28539:1;28496:44;:::o;27550:24::-;;;;:::o;44341:1056::-;44452:4;3106:12;:10;:12::i;:::-;3095:23;;:7;:5;:7::i;:::-;:23;;;3087:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44537:19:::1;;44514:20;;:42;;;;:::i;:::-;44496:15;:60;44474:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;44646:4;44635:7;:15;;44627:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;44731:15;44708:20;:38;;;;44801:28;44832:4;:14;;;44847:13;;;;;;;;;;;44832:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;44801:60;;44911:20;44934:44;44972:5;44934:33;44959:7;44934:20;:24;;:33;;;;:::i;:::-;:37;;:44;;;;:::i;:::-;44911:67;;45098:1;45083:12;:16;45079:110;;;45116:61;45132:13;;;;;;;;;;;45155:6;45164:12;45116:15;:61::i;:::-;45079:110;45264:19;45301:13;;;;;;;;;;;45264:51;;45326:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;45353:14;;;;;;;;;;45385:4;45378:11;;;;;44341:1056:::0;;;:::o;1717:98::-;1770:7;1797:10;1790:17;;1717:98;:::o;18258:380::-;18411:1;18394:19;;:5;:19;;;;18386:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18492:1;18473:21;;:7;:21;;;;18465:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18576:6;18546:11;:18;18558:5;18546:18;;;;;;;;;;;;;;;:27;18565:7;18546:27;;;;;;;;;;;;;;;:36;;;;18614:7;18598:32;;18607:5;18598:32;;;18623:6;18598:32;;;;;;:::i;:::-;;;;;;;;18258:380;;;:::o;35077:5011::-;35225:1;35209:18;;:4;:18;;;;35201:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35302:1;35288:16;;:2;:16;;;;35280:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;35371:1;35361:6;:11;35357:93;;;35389:28;35405:4;35411:2;35415:1;35389:15;:28::i;:::-;35432:7;;35357:93;35466:14;;;;;;;;;;;35462:2487;;;35527:7;:5;:7::i;:::-;35519:15;;:4;:15;;;;:49;;;;;35561:7;:5;:7::i;:::-;35555:13;;:2;:13;;;;35519:49;:86;;;;;35603:1;35589:16;;:2;:16;;;;35519:86;:128;;;;;35640:6;35626:21;;:2;:21;;;;35519:128;:158;;;;;35669:8;;;;;;;;;;;35668:9;35519:158;35497:2441;;;35717:13;;;;;;;;;;;35712:223;;35789:19;:25;35809:4;35789:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;35818:19;:23;35838:2;35818:23;;;;;;;;;;;;;;;;;;;;;;;;;35789:52;35755:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;35712:223;36091:20;;;;;;;;;;;36087:641;;;36172:7;:5;:7::i;:::-;36166:13;;:2;:13;;;;:72;;;;;36222:15;36208:30;;:2;:30;;;;36166:72;:129;;;;;36281:13;;;;;;;;;;;36267:28;;:2;:28;;;;36166:129;36136:573;;;36459:12;36384:28;:39;36413:9;36384:39;;;;;;;;;;;;;;;;:87;36346:258;;;;;;;;;;;;:::i;:::-;;;;;;;;;36673:12;36631:28;:39;36660:9;36631:39;;;;;;;;;;;;;;;:54;;;;36136:573;36087:641;36802:25;:31;36828:4;36802:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;36859:31;:35;36891:2;36859:35;;;;;;;;;;;;;;;;;;;;;;;;;36858:36;36802:92;36776:1147;;;36981:20;;36971:6;:30;;36937:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;37189:9;;37172:13;37182:2;37172:9;:13::i;:::-;37163:6;:22;;;;:::i;:::-;:35;;37129:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;36776:1147;;;37367:25;:29;37393:2;37367:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;37422:31;:37;37454:4;37422:37;;;;;;;;;;;;;;;;;;;;;;;;;37421:38;37367:92;37341:582;;;37546:20;;37536:6;:30;;37502:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;37341:582;;;37703:31;:35;37735:2;37703:35;;;;;;;;;;;;;;;;;;;;;;;;;37698:225;;37823:9;;37806:13;37816:2;37806:9;:13::i;:::-;37797:6;:22;;;;:::i;:::-;:35;;37763:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;37698:225;37341:582;36776:1147;35497:2441;35462:2487;37961:28;37992:24;38010:4;37992:9;:24::i;:::-;37961:55;;38029:12;38068:18;;38044:20;:42;;38029:57;;38117:7;:35;;;;;38141:11;;;;;;;;;;;38117:35;:61;;;;;38170:8;;;;;;;;;;;38169:9;38117:61;:110;;;;;38196:25;:31;38222:4;38196:31;;;;;;;;;;;;;;;;;;;;;;;;;38195:32;38117:110;:153;;;;;38245:19;:25;38265:4;38245:25;;;;;;;;;;;;;;;;;;;;;;;;;38244:26;38117:153;:194;;;;;38288:19;:23;38308:2;38288:23;;;;;;;;;;;;;;;;;;;;;;;;;38287:24;38117:194;38099:326;;;38349:4;38338:8;;:15;;;;;;;;;;;;;;;;;;38370:10;:8;:10::i;:::-;38408:5;38397:8;;:16;;;;;;;;;;;;;;;;;;38099:326;38456:8;;;;;;;;;;;38455:9;:55;;;;;38481:25;:29;38507:2;38481:29;;;;;;;;;;;;;;;;;;;;;;;;;38455:55;:85;;;;;38527:13;;;;;;;;;;;38455:85;:153;;;;;38593:15;;38576:14;;:32;;;;:::i;:::-;38557:15;:51;;38455:153;:196;;;;;38626:19;:25;38646:4;38626:25;;;;;;;;;;;;;;;;;;;;;;;;;38625:26;38455:196;38437:282;;;38678:29;:27;:29::i;:::-;;38437:282;38731:12;38747:8;;;;;;;;;;;38746:9;38731:24;;38857:19;:25;38877:4;38857:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;38886:19;:23;38906:2;38886:23;;;;;;;;;;;;;;;;;;;;;;;;;38857:52;38853:100;;;38936:5;38926:15;;38853:100;38965:12;39070:7;39066:969;;;39122:25;:29;39148:2;39122:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;39171:1;39155:13;;:17;39122:50;39118:768;;;39200:34;39230:3;39200:25;39211:13;;39200:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;39193:41;;39303:13;;28539:1;39276:4;:23;;;;:::i;:::-;39275:41;;;;:::i;:::-;39253:18;;:63;;;;;;;:::i;:::-;;;;;;;;39373:13;;28584:1;39352:4;:17;;;;:::i;:::-;39351:35;;;;:::i;:::-;39335:12;;:51;;;;;;;:::i;:::-;;;;;;;;39455:13;;28488:1;39428:4;:23;;;;:::i;:::-;39427:41;;;;:::i;:::-;39405:18;;:63;;;;;;;:::i;:::-;;;;;;;;39118:768;;;39530:25;:31;39556:4;39530:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;39580:1;39565:12;;:16;39530:51;39526:360;;;39609:33;39638:3;39609:24;39620:12;;39609:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;39602:40;;39710:12;;28356:1;39684:4;:22;;;;:::i;:::-;39683:39;;;;:::i;:::-;39661:18;;:61;;;;;;;:::i;:::-;;;;;;;;39778:12;;28400:1;39758:4;:16;;;;:::i;:::-;39757:33;;;;:::i;:::-;39741:12;;:49;;;;;;;:::i;:::-;;;;;;;;39858:12;;28306:1;39832:4;:22;;;;:::i;:::-;39831:39;;;;:::i;:::-;39809:18;;:61;;;;;;;:::i;:::-;;;;;;;;39526:360;39118:768;39913:1;39906:4;:8;39902:91;;;39935:42;39951:4;39965;39972;39935:15;:42::i;:::-;39902:91;40019:4;40009:14;;;;;:::i;:::-;;;39066:969;40047:33;40063:4;40069:2;40073:6;40047:15;:33::i;:::-;35077:5011;;;;;;;;:::o;4182:191::-;4256:16;4275:6;;;;;;;;;;;4256:25;;4301:8;4292:6;;:17;;;;;;;;;;;;;;;;;;4356:8;4325:40;;4346:8;4325:40;;;;;;;;;;;;4182:191;;:::o;34343:188::-;34460:5;34426:25;:31;34452:4;34426:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;34517:5;34483:40;;34511:4;34483:40;;;;;;;;;;;;34343:188;;:::o;23707:98::-;23765:7;23796:1;23792;:5;;;;:::i;:::-;23785:12;;23707:98;;;;:::o;24106:::-;24164:7;24195:1;24191;:5;;;;:::i;:::-;24184:12;;24106:98;;;;:::o;15440:770::-;15598:1;15580:20;;:6;:20;;;;15572:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;15682:1;15661:23;;:9;:23;;;;15653:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;15737:47;15758:6;15766:9;15777:6;15737:20;:47::i;:::-;15797:21;15821:9;:17;15831:6;15821:17;;;;;;;;;;;;;;;;15797:41;;15888:6;15871:13;:23;;15849:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;16032:6;16016:13;:22;15996:9;:17;16006:6;15996:17;;;;;;;;;;;;;;;:42;;;;16084:6;16060:9;:20;16070:9;16060:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;16125:9;16108:35;;16117:6;16108:35;;;16136:6;16108:35;;;;;;:::i;:::-;;;;;;;;16156:46;16176:6;16184:9;16195:6;16156:19;:46::i;:::-;15440:770;;;;:::o;41218:1756::-;41257:23;41283:24;41301:4;41283:9;:24::i;:::-;41257:50;;41318:25;41414:12;;41380:18;;41346;;:52;;;;:::i;:::-;:80;;;;:::i;:::-;41318:108;;41437:12;41485:1;41466:15;:20;:46;;;;41511:1;41490:17;:22;41466:46;41462:85;;;41529:7;;;;;41462:85;41602:2;41581:18;;:23;;;;:::i;:::-;41563:15;:41;41559:115;;;41660:2;41639:18;;:23;;;;:::i;:::-;41621:41;;41559:115;41735:23;41848:1;41815:17;41780:18;;41762:15;:36;;;;:::i;:::-;41761:71;;;;:::i;:::-;:88;;;;:::i;:::-;41735:114;;41860:26;41889:36;41909:15;41889;:19;;:36;;;;:::i;:::-;41860:65;;41938:25;41966:21;41938:49;;42000:36;42017:18;42000:16;:36::i;:::-;42049:18;42070:44;42096:17;42070:21;:25;;:44;;;;:::i;:::-;42049:65;;42127:23;42153:81;42206:17;42153:34;42168:18;;42153:10;:14;;:34;;;;:::i;:::-;:38;;:81;;;;:::i;:::-;42127:107;;42245:17;42265:51;42298:17;42265:28;42280:12;;42265:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;42245:71;;42329:23;42386:9;42368:15;42355:10;:28;;;;:::i;:::-;:40;;;;:::i;:::-;42329:66;;42429:1;42408:18;:22;;;;42462:1;42441:18;:22;;;;42489:1;42474:12;:16;;;;42525:9;;;;;;;;;;;42517:23;;42548:9;42517:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42503:59;;;;;42597:1;42579:15;:19;:42;;;;;42620:1;42602:15;:19;42579:42;42575:278;;;42638:46;42651:15;42668;42638:12;:46::i;:::-;42704:137;42737:18;42774:15;42808:18;;42704:137;;;;;;;;:::i;:::-;;;;;;;;42575:278;42887:15;;;;;;;;;;;42879:29;;42930:21;42879:87;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42865:101;;;;;41218:1756;;;;;;;;;;;:::o;43545:788::-;43602:4;43636:15;43619:14;:32;;;;43706:28;43737:4;:14;;;43752:13;;;;;;;;;;;43737:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;43706:60;;43816:20;43839:77;43900:5;43839:42;43864:16;;43839:20;:24;;:42;;;;:::i;:::-;:46;;:77;;;;:::i;:::-;43816:100;;44036:1;44021:12;:16;44017:110;;;44054:61;44070:13;;;;;;;;;;;44093:6;44102:12;44054:15;:61::i;:::-;44017:110;44202:19;44239:13;;;;;;;;;;;44202:51;;44264:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44291:12;;;;;;;;;;44321:4;44314:11;;;;;43545:788;:::o;19238:125::-;;;;:::o;19967:124::-;;;;:::o;23350:98::-;23408:7;23439:1;23435;:5;;;;:::i;:::-;23428:12;;23350:98;;;;:::o;40096:589::-;40222:21;40260:1;40246:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40222:40;;40291:4;40273;40278:1;40273:7;;;;;;;;;;;;;;;;;;;;;:23;;;;;;;;;;;40317:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;40307:4;40312:1;40307:7;;;;;;;;;;;;;;;;;;;;;:32;;;;;;;;;;;40352:62;40369:4;40384:15;40402:11;40352:8;:62::i;:::-;40453:15;:66;;;40534:11;40560:1;40604:4;40631;40651:15;40453:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40096:589;;:::o;40693:517::-;40841:62;40858:4;40873:15;40891:11;40841:8;:62::i;:::-;40946:15;:31;;;40985:9;41018:4;41038:11;41064:1;41107;27352:6;41176:15;40946:256;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;40693:517;;:::o;7:139:1:-;;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:143::-;;240:6;234:13;225:22;;256:33;283:5;256:33;:::i;:::-;215:80;;;;:::o;301:133::-;;382:6;369:20;360:29;;398:30;422:5;398:30;:::i;:::-;350:84;;;;:::o;440:139::-;;524:6;511:20;502:29;;540:33;567:5;540:33;:::i;:::-;492:87;;;;:::o;585:143::-;;673:6;667:13;658:22;;689:33;716:5;689:33;:::i;:::-;648:80;;;;:::o;734:262::-;;842:2;830:9;821:7;817:23;813:32;810:2;;;858:1;855;848:12;810:2;901:1;926:53;971:7;962:6;951:9;947:22;926:53;:::i;:::-;916:63;;872:117;800:196;;;;:::o;1002:284::-;;1121:2;1109:9;1100:7;1096:23;1092:32;1089:2;;;1137:1;1134;1127:12;1089:2;1180:1;1205:64;1261:7;1252:6;1241:9;1237:22;1205:64;:::i;:::-;1195:74;;1151:128;1079:207;;;;:::o;1292:407::-;;;1417:2;1405:9;1396:7;1392:23;1388:32;1385:2;;;1433:1;1430;1423:12;1385:2;1476:1;1501:53;1546:7;1537:6;1526:9;1522:22;1501:53;:::i;:::-;1491:63;;1447:117;1603:2;1629:53;1674:7;1665:6;1654:9;1650:22;1629:53;:::i;:::-;1619:63;;1574:118;1375:324;;;;;:::o;1705:552::-;;;;1847:2;1835:9;1826:7;1822:23;1818:32;1815:2;;;1863:1;1860;1853:12;1815:2;1906:1;1931:53;1976:7;1967:6;1956:9;1952:22;1931:53;:::i;:::-;1921:63;;1877:117;2033:2;2059:53;2104:7;2095:6;2084:9;2080:22;2059:53;:::i;:::-;2049:63;;2004:118;2161:2;2187:53;2232:7;2223:6;2212:9;2208:22;2187:53;:::i;:::-;2177:63;;2132:118;1805:452;;;;;:::o;2263:401::-;;;2385:2;2373:9;2364:7;2360:23;2356:32;2353:2;;;2401:1;2398;2391:12;2353:2;2444:1;2469:53;2514:7;2505:6;2494:9;2490:22;2469:53;:::i;:::-;2459:63;;2415:117;2571:2;2597:50;2639:7;2630:6;2619:9;2615:22;2597:50;:::i;:::-;2587:60;;2542:115;2343:321;;;;;:::o;2670:407::-;;;2795:2;2783:9;2774:7;2770:23;2766:32;2763:2;;;2811:1;2808;2801:12;2763:2;2854:1;2879:53;2924:7;2915:6;2904:9;2900:22;2879:53;:::i;:::-;2869:63;;2825:117;2981:2;3007:53;3052:7;3043:6;3032:9;3028:22;3007:53;:::i;:::-;2997:63;;2952:118;2753:324;;;;;:::o;3083:256::-;;3188:2;3176:9;3167:7;3163:23;3159:32;3156:2;;;3204:1;3201;3194:12;3156:2;3247:1;3272:50;3314:7;3305:6;3294:9;3290:22;3272:50;:::i;:::-;3262:60;;3218:114;3146:193;;;;:::o;3345:262::-;;3453:2;3441:9;3432:7;3428:23;3424:32;3421:2;;;3469:1;3466;3459:12;3421:2;3512:1;3537:53;3582:7;3573:6;3562:9;3558:22;3537:53;:::i;:::-;3527:63;;3483:117;3411:196;;;;:::o;3613:284::-;;3732:2;3720:9;3711:7;3707:23;3703:32;3700:2;;;3748:1;3745;3738:12;3700:2;3791:1;3816:64;3872:7;3863:6;3852:9;3848:22;3816:64;:::i;:::-;3806:74;;3762:128;3690:207;;;;:::o;3903:546::-;;;;4042:2;4030:9;4021:7;4017:23;4013:32;4010:2;;;4058:1;4055;4048:12;4010:2;4101:1;4126:53;4171:7;4162:6;4151:9;4147:22;4126:53;:::i;:::-;4116:63;;4072:117;4228:2;4254:53;4299:7;4290:6;4279:9;4275:22;4254:53;:::i;:::-;4244:63;;4199:118;4356:2;4382:50;4424:7;4415:6;4404:9;4400:22;4382:50;:::i;:::-;4372:60;;4327:115;4000:449;;;;;:::o;4455:596::-;;;;4608:2;4596:9;4587:7;4583:23;4579:32;4576:2;;;4624:1;4621;4614:12;4576:2;4667:1;4692:64;4748:7;4739:6;4728:9;4724:22;4692:64;:::i;:::-;4682:74;;4638:128;4805:2;4831:64;4887:7;4878:6;4867:9;4863:22;4831:64;:::i;:::-;4821:74;;4776:129;4944:2;4970:64;5026:7;5017:6;5006:9;5002:22;4970:64;:::i;:::-;4960:74;;4915:129;4566:485;;;;;:::o;5057:179::-;;5147:46;5189:3;5181:6;5147:46;:::i;:::-;5225:4;5220:3;5216:14;5202:28;;5137:99;;;;:::o;5242:108::-;5319:24;5337:5;5319:24;:::i;:::-;5314:3;5307:37;5297:53;;:::o;5356:118::-;5443:24;5461:5;5443:24;:::i;:::-;5438:3;5431:37;5421:53;;:::o;5510:732::-;;5658:54;5706:5;5658:54;:::i;:::-;5728:86;5807:6;5802:3;5728:86;:::i;:::-;5721:93;;5838:56;5888:5;5838:56;:::i;:::-;5917:7;5948:1;5933:284;5958:6;5955:1;5952:13;5933:284;;;6034:6;6028:13;6061:63;6120:3;6105:13;6061:63;:::i;:::-;6054:70;;6147:60;6200:6;6147:60;:::i;:::-;6137:70;;5993:224;5980:1;5977;5973:9;5968:14;;5933:284;;;5937:14;6233:3;6226:10;;5634:608;;;;;;;:::o;6248:109::-;6329:21;6344:5;6329:21;:::i;:::-;6324:3;6317:34;6307:50;;:::o;6363:181::-;6475:62;6531:5;6475:62;:::i;:::-;6470:3;6463:75;6453:91;;:::o;6550:147::-;6645:45;6684:5;6645:45;:::i;:::-;6640:3;6633:58;6623:74;;:::o;6703:364::-;;6819:39;6852:5;6819:39;:::i;:::-;6874:71;6938:6;6933:3;6874:71;:::i;:::-;6867:78;;6954:52;6999:6;6994:3;6987:4;6980:5;6976:16;6954:52;:::i;:::-;7031:29;7053:6;7031:29;:::i;:::-;7026:3;7022:39;7015:46;;6795:272;;;;;:::o;7073:367::-;;7236:67;7300:2;7295:3;7236:67;:::i;:::-;7229:74;;7333:34;7329:1;7324:3;7320:11;7313:55;7399:5;7394:2;7389:3;7385:12;7378:27;7431:2;7426:3;7422:12;7415:19;;7219:221;;;:::o;7446:320::-;;7609:67;7673:2;7668:3;7609:67;:::i;:::-;7602:74;;7706:24;7702:1;7697:3;7693:11;7686:45;7757:2;7752:3;7748:12;7741:19;;7592:174;;;:::o;7772:370::-;;7935:67;7999:2;7994:3;7935:67;:::i;:::-;7928:74;;8032:34;8028:1;8023:3;8019:11;8012:55;8098:8;8093:2;8088:3;8084:12;8077:30;8133:2;8128:3;8124:12;8117:19;;7918:224;;;:::o;8148:366::-;;8311:67;8375:2;8370:3;8311:67;:::i;:::-;8304:74;;8408:34;8404:1;8399:3;8395:11;8388:55;8474:4;8469:2;8464:3;8460:12;8453:26;8505:2;8500:3;8496:12;8489:19;;8294:220;;;:::o;8520:383::-;;8683:67;8747:2;8742:3;8683:67;:::i;:::-;8676:74;;8780:34;8776:1;8771:3;8767:11;8760:55;8846:21;8841:2;8836:3;8832:12;8825:43;8894:2;8889:3;8885:12;8878:19;;8666:237;;;:::o;8909:368::-;;9072:67;9136:2;9131:3;9072:67;:::i;:::-;9065:74;;9169:34;9165:1;9160:3;9156:11;9149:55;9235:6;9230:2;9225:3;9221:12;9214:28;9268:2;9263:3;9259:12;9252:19;;9055:222;;;:::o;9283:389::-;;9446:67;9510:2;9505:3;9446:67;:::i;:::-;9439:74;;9543:34;9539:1;9534:3;9530:11;9523:55;9609:27;9604:2;9599:3;9595:12;9588:49;9663:2;9658:3;9654:12;9647:19;;9429:243;;;:::o;9678:370::-;;9841:67;9905:2;9900:3;9841:67;:::i;:::-;9834:74;;9938:34;9934:1;9929:3;9925:11;9918:55;10004:8;9999:2;9994:3;9990:12;9983:30;10039:2;10034:3;10030:12;10023:19;;9824:224;;;:::o;10054:386::-;;10217:67;10281:2;10276:3;10217:67;:::i;:::-;10210:74;;10314:34;10310:1;10305:3;10301:11;10294:55;10380:24;10375:2;10370:3;10366:12;10359:46;10431:2;10426:3;10422:12;10415:19;;10200:240;;;:::o;10446:380::-;;10609:67;10673:2;10668:3;10609:67;:::i;:::-;10602:74;;10706:34;10702:1;10697:3;10693:11;10686:55;10772:18;10767:2;10762:3;10758:12;10751:40;10817:2;10812:3;10808:12;10801:19;;10592:234;;;:::o;10832:385::-;;10995:67;11059:2;11054:3;10995:67;:::i;:::-;10988:74;;11092:34;11088:1;11083:3;11079:11;11072:55;11158:23;11153:2;11148:3;11144:12;11137:45;11208:2;11203:3;11199:12;11192:19;;10978:239;;;:::o;11223:384::-;;11386:67;11450:2;11445:3;11386:67;:::i;:::-;11379:74;;11483:34;11479:1;11474:3;11470:11;11463:55;11549:22;11544:2;11539:3;11535:12;11528:44;11598:2;11593:3;11589:12;11582:19;;11369:238;;;:::o;11613:385::-;;11776:67;11840:2;11835:3;11776:67;:::i;:::-;11769:74;;11873:34;11869:1;11864:3;11860:11;11853:55;11939:23;11934:2;11929:3;11925:12;11918:45;11989:2;11984:3;11980:12;11973:19;;11759:239;;;:::o;12004:439::-;;12167:67;12231:2;12226:3;12167:67;:::i;:::-;12160:74;;12264:34;12260:1;12255:3;12251:11;12244:55;12330:34;12325:2;12320:3;12316:12;12309:56;12396:11;12391:2;12386:3;12382:12;12375:33;12434:2;12429:3;12425:12;12418:19;;12150:293;;;:::o;12449:372::-;;12612:67;12676:2;12671:3;12612:67;:::i;:::-;12605:74;;12709:34;12705:1;12700:3;12696:11;12689:55;12775:10;12770:2;12765:3;12761:12;12754:32;12812:2;12807:3;12803:12;12796:19;;12595:226;;;:::o;12827:330::-;;12990:67;13054:2;13049:3;12990:67;:::i;:::-;12983:74;;13087:34;13083:1;13078:3;13074:11;13067:55;13148:2;13143:3;13139:12;13132:19;;12973:184;;;:::o;13163:374::-;;13326:67;13390:2;13385:3;13326:67;:::i;:::-;13319:74;;13423:34;13419:1;13414:3;13410:11;13403:55;13489:12;13484:2;13479:3;13475:12;13468:34;13528:2;13523:3;13519:12;13512:19;;13309:228;;;:::o;13543:369::-;;13706:67;13770:2;13765:3;13706:67;:::i;:::-;13699:74;;13803:34;13799:1;13794:3;13790:11;13783:55;13869:7;13864:2;13859:3;13855:12;13848:29;13903:2;13898:3;13894:12;13887:19;;13689:223;;;:::o;13918:330::-;;14081:67;14145:2;14140:3;14081:67;:::i;:::-;14074:74;;14178:34;14174:1;14169:3;14165:11;14158:55;14239:2;14234:3;14230:12;14223:19;;14064:184;;;:::o;14254:297::-;;14434:83;14515:1;14510:3;14434:83;:::i;:::-;14427:90;;14543:1;14538:3;14534:11;14527:18;;14417:134;;;:::o;14557:368::-;;14720:67;14784:2;14779:3;14720:67;:::i;:::-;14713:74;;14817:34;14813:1;14808:3;14804:11;14797:55;14883:6;14878:2;14873:3;14869:12;14862:28;14916:2;14911:3;14907:12;14900:19;;14703:222;;;:::o;14931:317::-;;15094:67;15158:2;15153:3;15094:67;:::i;:::-;15087:74;;15191:21;15187:1;15182:3;15178:11;15171:42;15239:2;15234:3;15230:12;15223:19;;15077:171;;;:::o;15254:369::-;;15417:67;15481:2;15476:3;15417:67;:::i;:::-;15410:74;;15514:34;15510:1;15505:3;15501:11;15494:55;15580:7;15575:2;15570:3;15566:12;15559:29;15614:2;15609:3;15605:12;15598:19;;15400:223;;;:::o;15629:379::-;;15792:67;15856:2;15851:3;15792:67;:::i;:::-;15785:74;;15889:34;15885:1;15880:3;15876:11;15869:55;15955:17;15950:2;15945:3;15941:12;15934:39;15999:2;15994:3;15990:12;15983:19;;15775:233;;;:::o;16014:118::-;16101:24;16119:5;16101:24;:::i;:::-;16096:3;16089:37;16079:53;;:::o;16138:112::-;16221:22;16237:5;16221:22;:::i;:::-;16216:3;16209:35;16199:51;;:::o;16256:379::-;;16462:147;16605:3;16462:147;:::i;:::-;16455:154;;16626:3;16619:10;;16444:191;;;:::o;16641:222::-;;16772:2;16761:9;16757:18;16749:26;;16785:71;16853:1;16842:9;16838:17;16829:6;16785:71;:::i;:::-;16739:124;;;;:::o;16869:807::-;;17156:3;17145:9;17141:19;17133:27;;17170:71;17238:1;17227:9;17223:17;17214:6;17170:71;:::i;:::-;17251:72;17319:2;17308:9;17304:18;17295:6;17251:72;:::i;:::-;17333:80;17409:2;17398:9;17394:18;17385:6;17333:80;:::i;:::-;17423;17499:2;17488:9;17484:18;17475:6;17423:80;:::i;:::-;17513:73;17581:3;17570:9;17566:19;17557:6;17513:73;:::i;:::-;17596;17664:3;17653:9;17649:19;17640:6;17596:73;:::i;:::-;17123:553;;;;;;;;;:::o;17682:210::-;;17807:2;17796:9;17792:18;17784:26;;17820:65;17882:1;17871:9;17867:17;17858:6;17820:65;:::i;:::-;17774:118;;;;:::o;17898:272::-;;18054:2;18043:9;18039:18;18031:26;;18067:96;18160:1;18149:9;18145:17;18136:6;18067:96;:::i;:::-;18021:149;;;;:::o;18176:313::-;;18327:2;18316:9;18312:18;18304:26;;18376:9;18370:4;18366:20;18362:1;18351:9;18347:17;18340:47;18404:78;18477:4;18468:6;18404:78;:::i;:::-;18396:86;;18294:195;;;;:::o;18495:419::-;;18699:2;18688:9;18684:18;18676:26;;18748:9;18742:4;18738:20;18734:1;18723:9;18719:17;18712:47;18776:131;18902:4;18776:131;:::i;:::-;18768:139;;18666:248;;;:::o;18920:419::-;;19124:2;19113:9;19109:18;19101:26;;19173:9;19167:4;19163:20;19159:1;19148:9;19144:17;19137:47;19201:131;19327:4;19201:131;:::i;:::-;19193:139;;19091:248;;;:::o;19345:419::-;;19549:2;19538:9;19534:18;19526:26;;19598:9;19592:4;19588:20;19584:1;19573:9;19569:17;19562:47;19626:131;19752:4;19626:131;:::i;:::-;19618:139;;19516:248;;;:::o;19770:419::-;;19974:2;19963:9;19959:18;19951:26;;20023:9;20017:4;20013:20;20009:1;19998:9;19994:17;19987:47;20051:131;20177:4;20051:131;:::i;:::-;20043:139;;19941:248;;;:::o;20195:419::-;;20399:2;20388:9;20384:18;20376:26;;20448:9;20442:4;20438:20;20434:1;20423:9;20419:17;20412:47;20476:131;20602:4;20476:131;:::i;:::-;20468:139;;20366:248;;;:::o;20620:419::-;;20824:2;20813:9;20809:18;20801:26;;20873:9;20867:4;20863:20;20859:1;20848:9;20844:17;20837:47;20901:131;21027:4;20901:131;:::i;:::-;20893:139;;20791:248;;;:::o;21045:419::-;;21249:2;21238:9;21234:18;21226:26;;21298:9;21292:4;21288:20;21284:1;21273:9;21269:17;21262:47;21326:131;21452:4;21326:131;:::i;:::-;21318:139;;21216:248;;;:::o;21470:419::-;;21674:2;21663:9;21659:18;21651:26;;21723:9;21717:4;21713:20;21709:1;21698:9;21694:17;21687:47;21751:131;21877:4;21751:131;:::i;:::-;21743:139;;21641:248;;;:::o;21895:419::-;;22099:2;22088:9;22084:18;22076:26;;22148:9;22142:4;22138:20;22134:1;22123:9;22119:17;22112:47;22176:131;22302:4;22176:131;:::i;:::-;22168:139;;22066:248;;;:::o;22320:419::-;;22524:2;22513:9;22509:18;22501:26;;22573:9;22567:4;22563:20;22559:1;22548:9;22544:17;22537:47;22601:131;22727:4;22601:131;:::i;:::-;22593:139;;22491:248;;;:::o;22745:419::-;;22949:2;22938:9;22934:18;22926:26;;22998:9;22992:4;22988:20;22984:1;22973:9;22969:17;22962:47;23026:131;23152:4;23026:131;:::i;:::-;23018:139;;22916:248;;;:::o;23170:419::-;;23374:2;23363:9;23359:18;23351:26;;23423:9;23417:4;23413:20;23409:1;23398:9;23394:17;23387:47;23451:131;23577:4;23451:131;:::i;:::-;23443:139;;23341:248;;;:::o;23595:419::-;;23799:2;23788:9;23784:18;23776:26;;23848:9;23842:4;23838:20;23834:1;23823:9;23819:17;23812:47;23876:131;24002:4;23876:131;:::i;:::-;23868:139;;23766:248;;;:::o;24020:419::-;;24224:2;24213:9;24209:18;24201:26;;24273:9;24267:4;24263:20;24259:1;24248:9;24244:17;24237:47;24301:131;24427:4;24301:131;:::i;:::-;24293:139;;24191:248;;;:::o;24445:419::-;;24649:2;24638:9;24634:18;24626:26;;24698:9;24692:4;24688:20;24684:1;24673:9;24669:17;24662:47;24726:131;24852:4;24726:131;:::i;:::-;24718:139;;24616:248;;;:::o;24870:419::-;;25074:2;25063:9;25059:18;25051:26;;25123:9;25117:4;25113:20;25109:1;25098:9;25094:17;25087:47;25151:131;25277:4;25151:131;:::i;:::-;25143:139;;25041:248;;;:::o;25295:419::-;;25499:2;25488:9;25484:18;25476:26;;25548:9;25542:4;25538:20;25534:1;25523:9;25519:17;25512:47;25576:131;25702:4;25576:131;:::i;:::-;25568:139;;25466:248;;;:::o;25720:419::-;;25924:2;25913:9;25909:18;25901:26;;25973:9;25967:4;25963:20;25959:1;25948:9;25944:17;25937:47;26001:131;26127:4;26001:131;:::i;:::-;25993:139;;25891:248;;;:::o;26145:419::-;;26349:2;26338:9;26334:18;26326:26;;26398:9;26392:4;26388:20;26384:1;26373:9;26369:17;26362:47;26426:131;26552:4;26426:131;:::i;:::-;26418:139;;26316:248;;;:::o;26570:419::-;;26774:2;26763:9;26759:18;26751:26;;26823:9;26817:4;26813:20;26809:1;26798:9;26794:17;26787:47;26851:131;26977:4;26851:131;:::i;:::-;26843:139;;26741:248;;;:::o;26995:419::-;;27199:2;27188:9;27184:18;27176:26;;27248:9;27242:4;27238:20;27234:1;27223:9;27219:17;27212:47;27276:131;27402:4;27276:131;:::i;:::-;27268:139;;27166:248;;;:::o;27420:419::-;;27624:2;27613:9;27609:18;27601:26;;27673:9;27667:4;27663:20;27659:1;27648:9;27644:17;27637:47;27701:131;27827:4;27701:131;:::i;:::-;27693:139;;27591:248;;;:::o;27845:419::-;;28049:2;28038:9;28034:18;28026:26;;28098:9;28092:4;28088:20;28084:1;28073:9;28069:17;28062:47;28126:131;28252:4;28126:131;:::i;:::-;28118:139;;28016:248;;;:::o;28270:222::-;;28401:2;28390:9;28386:18;28378:26;;28414:71;28482:1;28471:9;28467:17;28458:6;28414:71;:::i;:::-;28368:124;;;;:::o;28498:831::-;;28799:3;28788:9;28784:19;28776:27;;28813:71;28881:1;28870:9;28866:17;28857:6;28813:71;:::i;:::-;28894:80;28970:2;28959:9;28955:18;28946:6;28894:80;:::i;:::-;29021:9;29015:4;29011:20;29006:2;28995:9;28991:18;28984:48;29049:108;29152:4;29143:6;29049:108;:::i;:::-;29041:116;;29167:72;29235:2;29224:9;29220:18;29211:6;29167:72;:::i;:::-;29249:73;29317:3;29306:9;29302:19;29293:6;29249:73;:::i;:::-;28766:563;;;;;;;;:::o;29335:442::-;;29522:2;29511:9;29507:18;29499:26;;29535:71;29603:1;29592:9;29588:17;29579:6;29535:71;:::i;:::-;29616:72;29684:2;29673:9;29669:18;29660:6;29616:72;:::i;:::-;29698;29766:2;29755:9;29751:18;29742:6;29698:72;:::i;:::-;29489:288;;;;;;:::o;29783:214::-;;29910:2;29899:9;29895:18;29887:26;;29923:67;29987:1;29976:9;29972:17;29963:6;29923:67;:::i;:::-;29877:120;;;;:::o;30003:132::-;;30093:3;30085:11;;30123:4;30118:3;30114:14;30106:22;;30075:60;;;:::o;30141:114::-;;30242:5;30236:12;30226:22;;30215:40;;;:::o;30261:99::-;;30347:5;30341:12;30331:22;;30320:40;;;:::o;30366:113::-;;30468:4;30463:3;30459:14;30451:22;;30441:38;;;:::o;30485:184::-;;30618:6;30613:3;30606:19;30658:4;30653:3;30649:14;30634:29;;30596:73;;;;:::o;30675:147::-;;30813:3;30798:18;;30788:34;;;;:::o;30828:169::-;;30946:6;30941:3;30934:19;30986:4;30981:3;30977:14;30962:29;;30924:73;;;;:::o;31003:305::-;;31062:20;31080:1;31062:20;:::i;:::-;31057:25;;31096:20;31114:1;31096:20;:::i;:::-;31091:25;;31250:1;31182:66;31178:74;31175:1;31172:81;31169:2;;;31256:18;;:::i;:::-;31169:2;31300:1;31297;31293:9;31286:16;;31047:261;;;;:::o;31314:185::-;;31371:20;31389:1;31371:20;:::i;:::-;31366:25;;31405:20;31423:1;31405:20;:::i;:::-;31400:25;;31444:1;31434:2;;31449:18;;:::i;:::-;31434:2;31491:1;31488;31484:9;31479:14;;31356:143;;;;:::o;31505:348::-;;31568:20;31586:1;31568:20;:::i;:::-;31563:25;;31602:20;31620:1;31602:20;:::i;:::-;31597:25;;31790:1;31722:66;31718:74;31715:1;31712:81;31707:1;31700:9;31693:17;31689:105;31686:2;;;31797:18;;:::i;:::-;31686:2;31845:1;31842;31838:9;31827:20;;31553:300;;;;:::o;31859:191::-;;31919:20;31937:1;31919:20;:::i;:::-;31914:25;;31953:20;31971:1;31953:20;:::i;:::-;31948:25;;31992:1;31989;31986:8;31983:2;;;31997:18;;:::i;:::-;31983:2;32042:1;32039;32035:9;32027:17;;31904:146;;;;:::o;32056:96::-;;32122:24;32140:5;32122:24;:::i;:::-;32111:35;;32101:51;;;:::o;32158:90::-;;32235:5;32228:13;32221:21;32210:32;;32200:48;;;:::o;32254:126::-;;32331:42;32324:5;32320:54;32309:65;;32299:81;;;:::o;32386:77::-;;32452:5;32441:16;;32431:32;;;:::o;32469:86::-;;32544:4;32537:5;32533:16;32522:27;;32512:43;;;:::o;32561:176::-;;32669:62;32725:5;32669:62;:::i;:::-;32656:75;;32646:91;;;:::o;32743:138::-;;32851:24;32869:5;32851:24;:::i;:::-;32838:37;;32828:53;;;:::o;32887:121::-;;32978:24;32996:5;32978:24;:::i;:::-;32965:37;;32955:53;;;:::o;33014:307::-;33082:1;33092:113;33106:6;33103:1;33100:13;33092:113;;;33191:1;33186:3;33182:11;33176:18;33172:1;33167:3;33163:11;33156:39;33128:2;33125:1;33121:10;33116:15;;33092:113;;;33223:6;33220:1;33217:13;33214:2;;;33303:1;33294:6;33289:3;33285:16;33278:27;33214:2;33063:258;;;;:::o;33327:320::-;;33408:1;33402:4;33398:12;33388:22;;33455:1;33449:4;33445:12;33476:18;33466:2;;33532:4;33524:6;33520:17;33510:27;;33466:2;33594;33586:6;33583:14;33563:18;33560:38;33557:2;;;33613:18;;:::i;:::-;33557:2;33378:269;;;;:::o;33653:180::-;33701:77;33698:1;33691:88;33798:4;33795:1;33788:15;33822:4;33819:1;33812:15;33839:180;33887:77;33884:1;33877:88;33984:4;33981:1;33974:15;34008:4;34005:1;33998:15;34025:180;34073:77;34070:1;34063:88;34170:4;34167:1;34160:15;34194:4;34191:1;34184:15;34211:102;;34303:2;34299:7;34294:2;34287:5;34283:14;34279:28;34269:38;;34259:54;;;:::o;34319:122::-;34392:24;34410:5;34392:24;:::i;:::-;34385:5;34382:35;34372:2;;34431:1;34428;34421:12;34372:2;34362:79;:::o;34447:116::-;34517:21;34532:5;34517:21;:::i;:::-;34510:5;34507:32;34497:2;;34553:1;34550;34543:12;34497:2;34487:76;:::o;34569:122::-;34642:24;34660:5;34642:24;:::i;:::-;34635:5;34632:35;34622:2;;34681:1;34678;34671:12;34622:2;34612:79;:::o

Swarm Source

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