ETH Price: $3,186.14 (+1.27%)
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer204303462024-08-01 1:14:59182 days ago1722474899IN
0x9AE9c242...9B7b24597
0 ETH0.000140794.4325581
Approve203704942024-07-23 16:41:47190 days ago1721752907IN
0x9AE9c242...9B7b24597
0 ETH0.000392918.31632029
Set Automated Ma...203702372024-07-23 15:49:59190 days ago1721749799IN
0x9AE9c242...9B7b24597
0 ETH0.000340766.7389307
Approve203696772024-07-23 13:57:59190 days ago1721743079IN
0x9AE9c242...9B7b24597
0 ETH0.000419448.93913502
Approve203693622024-07-23 12:54:23190 days ago1721739263IN
0x9AE9c242...9B7b24597
0 ETH0.00024495.18353214
Transfer203691382024-07-23 12:09:23190 days ago1721736563IN
0x9AE9c242...9B7b24597
0 ETH0.000260745.5574882
Approve203690942024-07-23 12:00:35190 days ago1721736035IN
0x9AE9c242...9B7b24597
0 ETH0.000128135.14565163
Transfer203690502024-07-23 11:51:47190 days ago1721735507IN
0x9AE9c242...9B7b24597
0 ETH0.000214944.58118617
Transfer203690412024-07-23 11:49:59190 days ago1721735399IN
0x9AE9c242...9B7b24597
0 ETH0.000223664.7670484
Transfer203689642024-07-23 11:34:35190 days ago1721734475IN
0x9AE9c242...9B7b24597
0 ETH0.000215434.59174044
Approve203687542024-07-23 10:52:35190 days ago1721731955IN
0x9AE9c242...9B7b24597
0 ETH0.000196664.16779669
Set Automated Ma...203666112024-07-23 3:41:59191 days ago1721706119IN
0x9AE9c242...9B7b24597
0 ETH0.00016255.29927107
Approve203664052024-07-23 3:00:23191 days ago1721703623IN
0x9AE9c242...9B7b24597
0 ETH0.000151013.22173464
Set Automated Ma...203663762024-07-23 2:54:23191 days ago1721703263IN
0x9AE9c242...9B7b24597
0 ETH0.000153483.03527683
Set Automated Ma...203647072024-07-22 21:18:59191 days ago1721683139IN
0x9AE9c242...9B7b24597
0 ETH0.000407028.04934298
Set Automated Ma...203646402024-07-22 21:05:23191 days ago1721682323IN
0x9AE9c242...9B7b24597
0 ETH0.000356337.04700935
Approve203637452024-07-22 18:05:23191 days ago1721671523IN
0x9AE9c242...9B7b24597
0 ETH0.000269735.71635872
Set Automated Ma...203636462024-07-22 17:45:23191 days ago1721670323IN
0x9AE9c242...9B7b24597
0 ETH0.000197026.87583615
Approve203636182024-07-22 17:39:47191 days ago1721669987IN
0x9AE9c242...9B7b24597
0 ETH0.000284566.03071277
Set Automated Ma...203636012024-07-22 17:36:23191 days ago1721669783IN
0x9AE9c242...9B7b24597
0 ETH0.000302895.99001418
Set Automated Ma...203635982024-07-22 17:35:47191 days ago1721669747IN
0x9AE9c242...9B7b24597
0 ETH0.0101132200
Approve203635922024-07-22 17:34:35191 days ago1721669675IN
0x9AE9c242...9B7b24597
0 ETH0.000276015.87632023
Approve203635832024-07-22 17:32:47191 days ago1721669567IN
0x9AE9c242...9B7b24597
0 ETH0.000306116.51383014
Approve203635492024-07-22 17:25:59191 days ago1721669159IN
0x9AE9c242...9B7b24597
0 ETH0.000266545.67759496
Approve203635402024-07-22 17:24:11191 days ago1721669051IN
0x9AE9c242...9B7b24597
0 ETH0.00039278.31190069
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
FightX

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-07-21
*/

/**
Guaranteed 100x Meme Token

*/

// SPDX-License-Identifier: MIT

pragma solidity 0.8.17;
pragma experimental ABIEncoderV2;

// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

// pragma solidity ^0.8.0;


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

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

// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

// pragma solidity ^0.8.0;

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

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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller FightXis not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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 theFightX 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);
    }
}

// OpenZeppelin Contracts (last FightXupdated v4.6.0) (token/ERC20/IERC20.sol)

// pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` FightXtokens 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 allowanceFightX 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 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 FightXcaller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number FightXof 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.
     *
     FightX
     * 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 `from` to `to` 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 from,
        address to,
        uint256 amount
    ) external returns (bool);
}

// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

// pragma solidity ^0.8.0;

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

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *FightX
 * _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);
}

// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)

// pragma solidity ^0.8.0;

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

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 FightXEIP 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;

    uint256 public _maxlSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * 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
    FightXny 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:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

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

    function approve(address spender, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    function increaseAllowance(address spender, uint256 addedValue)
        public
        virtual
        returns (bool)
    {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    function decreaseAllowance(address spender, uint256 subtractedValue)
        public
        virtual
        returns (bool)
    {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(
            currentAllowance >= subtractedValue,
            "ERC20: decreased FightXallowance below zero"
        );
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(
            fromBalance >= amount,
            "ERC20: transfer amount FightXexceeds balance"
        );
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of allFightX balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint FightXto the zero address");

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

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

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

    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from FightXthe zero address");

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn FightXamount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

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

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

    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: FightXapprove from the zero address");
        require(spender != address(0), "ERC20: approve to the zero FightXaddress");

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

    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(
                currentAllowance >= amount,
                "ERC20: insufficient allowance"
            );
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

// pragma solidity ^0.8.0;

library SafeMath {
    /**
     * @dev Returns the addition of two unsigned FightXintegers, 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 subtraction 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 FightXunsigned 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 FightXunsigned 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 FightXis 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 FightXof 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.
     *
    FightX
     * 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.
     *
    FightXrevert (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}.
    FightX
     *
     * 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;
        }
    }
}

// pragma solidity >=0.5.0;

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

// pragma solidity >=0.6.2;

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

    function WETH() external pure returns (address);

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

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

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

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

    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint256 liquidity,  uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountA, uint256 amountB);

    function removeLiquidityETHWithPermit(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,  uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountToken, uint256 amountETH);

    function swapExactTokensForTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapTokensForExactTokens(
        uint256 amountOut,   uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactETHForTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function swapTokensForExactETH(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactTokensForETH(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapETHForExactTokens(
        uint256 amountOut,    address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function quote(
        uint256 amountA,
        uint256 reserveA,
        uint256 reserveB
    ) external pure returns (uint256 amountB);

    function getAmountOut(
        uint256 amountIn,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountOut);

    function getAmountIn(
        uint256 amountOut,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountIn);

    function getAmountsOut(uint256 amountIn, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);

    function getAmountsIn(uint256 amountOut, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);
}

// pragma solidity >=0.6.2;

// import './IUniswapV2Router01.sol';

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountETH);

    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,   uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,     uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountETH);

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

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

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

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

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public uniswapV2Pair;

    address public marketingWallet;
    address public developmentWallet;
    address public liquidityWallet;
    address public constant deadAddress = address(0xdead);

    bool public tradingEnabled;
    bool public swapEnabled;
    bool private _swapping;

    uint256 public swapTokensAtAmount;

    uint256 public buyTotalFees; uint256 private _buyMarketingFee;
    uint256 private _buyDevelopmentFee;
    uint256 private _buyLiquidityFee;

    uint256 public sellTotalFees;
    uint256 private _sellMarketingFee;
    uint256 private _sellDevelopmentFee;
    uint256 private _sellLiquidityFee;

    uint256 private _tokensForMarketing;
    uint256 private _tokensForDevelopment;
    uint256 private _tokensForLiquidity;
    uint256 private _previousFee;

    mapping (address => bool) private _isExcludedFromEnableTrad;
    mapping(address => bool) private _automatedMarketMakerPairs;
    

    event ExcludeFromLimits(address indexed account, bool isExcluded);

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

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

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

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

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

    event TokensAirdropped(uint256 totalWallets, uint256 totalTokens);

    constructor() ERC20("FightX", "FightX") {

        uint256 totalSupply = 100_000_000 * (10 ** 18);

        uniswapV2Router = IUniswapV2Router02(0x4752ba5DBc23f44D87826276BF6Fd6b1C372aD24);
        _approve(address(this), address(uniswapV2Router), type(uint256).max);


        _buyMarketingFee = 0;
        _buyDevelopmentFee = 0;
        _buyLiquidityFee = 0;
        buyTotalFees = _buyMarketingFee + _buyDevelopmentFee + _buyLiquidityFee;

        _sellMarketingFee = 0;
        _sellDevelopmentFee = 0;
        _sellLiquidityFee = 0;
        sellTotalFees = _sellMarketingFee + _sellDevelopmentFee + _sellLiquidityFee;
        _previousFee = sellTotalFees;

        
        _isExcludedFromEnableTrad[owner()] = true;
        _isExcludedFromEnableTrad[address(this)] = true;
        _isExcludedFromEnableTrad[deadAddress] = true;

        _mint(owner(), totalSupply); 
    }

    receive() external payable {}

    function enableTrading() public onlyOwner {
        require(!tradingEnabled, "Trading already FightXactive.");
        tradingEnabled = true;
        swapEnabled = true;
    }


    function excluudeFrommEnobleTrading(address account,
      bool excluded) external onlyOwner{
        _isExcludedFromEnableTrad[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }

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


    function _setAutomatedMarketMakerPair(address pair, bool value) internal {
        _automatedMarketMakerPairs[pair] = value;
        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the FightXzero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(tradingEnabled || _isExcludedFromEnableTrad[from] || _isExcludedFromEnableTrad[to], "Trading not yet enabled!");
        if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }


        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        if (
            canSwap &&
            swapEnabled &&!_swapping&&_automatedMarketMakerPairs[from] &&
            !_isExcludedFromEnableTrad[from] &&
            !_isExcludedFromEnableTrad[to]
        ) {
            _swapping = true;

            _swapBack();

            _swapping = false;
        }

        bool takeFee = !_swapping;

        if (_isExcludedFromEnableTrad[from] || _isExcludedFromEnableTrad[to]) {
            takeFee = false;
        }

        uint256 fees = 0;

        if (takeFee) {
            // on sell
            if (_automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(10000);
                _tokensForLiquidity +=
                    (fees * _sellLiquidityFee) /
                    sellTotalFees;
                _tokensForMarketing +=
                    (fees * _sellMarketingFee) /
                    sellTotalFees;
                _tokensForDevelopment +=
                    (fees * _sellDevelopmentFee) /
                    sellTotalFees;
            }
            // on buy
            else if (_automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(10000);
                _tokensForLiquidity += (fees * _buyLiquidityFee) / buyTotalFees;
                _tokensForMarketing += (fees * _buyMarketingFee) / buyTotalFees;
                _tokensForDevelopment +=
                    (fees * _buyDevelopmentFee) /
                    buyTotalFees;
            }

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

            amount -= fees;
        }

        super._transfer(from, to, amount);
        sellTotalFees = _previousFee;
    }

    function _swapTokensForETH(uint256 tokenAmount) internal {
        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,
            path,
            address(this),
            block.timestamp
        );
    }

    function _addLiquidity(uint256 tokenAmount, uint256 ethAmount) internal {
        _approve(address(this), address(uniswapV2Router), tokenAmount);

        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0,
            0,
            liquidityWallet,
            block.timestamp
        );
    }

    function _swapBack() internal {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = _tokensForLiquidity +
            _tokensForMarketing +
            _tokensForDevelopment;
        bool success;


        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 ethForDevelopment = ethBalance.mul(_tokensForDevelopment).div(
            totalTokensToSwap
        );

        uint256 ethForLiquidity = ethBalance -
            ethForMarketing -
            ethForDevelopment;

        _tokensForLiquidity = 0;
        _tokensForMarketing = 0;
        _tokensForDevelopment = 0;

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

        (success, ) = address(developmentWallet).call{value: ethForDevelopment}("");

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

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromLimits","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"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":false,"internalType":"uint256","name":"totalWallets","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"totalTokens","type":"uint256"}],"name":"TokensAirdropped","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":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"developmentWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"liquidityWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[],"name":"_maxlSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"developmentWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excluudeFrommEnobleTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"liquidityWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","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"},{"stateMutability":"payable","type":"receive"}]

60a06040523480156200001157600080fd5b506040518060400160405280600681526020017f46696768745800000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f466967687458000000000000000000000000000000000000000000000000000081525081600490816200008f9190620009d3565b508060059081620000a19190620009d3565b505050620000c4620000b86200031960201b60201c565b6200032160201b60201c565b60006a52b7d2dcc80cd2e40000009050734752ba5dbc23f44d87826276bf6fd6b1c372ad2473ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff168152505062000151306080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff620003e760201b60201c565b6000600d819055506000600e819055506000600f81905550600f54600e54600d546200017e919062000ae9565b6200018a919062000ae9565b600c81905550600060118190555060006012819055506000601381905550601354601254601154620001bd919062000ae9565b620001c9919062000ae9565b601081905550601054601781905550600160186000620001ee620005b860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601860003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016018600061dead73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506200031262000305620005b860201b60201c565b82620005e260201b60201c565b5062000d2b565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000459576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004509062000bab565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620004cb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004c29062000c43565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051620005ab919062000c76565b60405180910390a3505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000654576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200064b9062000d09565b60405180910390fd5b62000668600083836200074f60201b60201c565b80600260008282546200067c919062000ae9565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200072f919062000c76565b60405180910390a36200074b600083836200075460201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620007db57607f821691505b602082108103620007f157620007f062000793565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200085b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200081c565b6200086786836200081c565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620008b4620008ae620008a8846200087f565b62000889565b6200087f565b9050919050565b6000819050919050565b620008d08362000893565b620008e8620008df82620008bb565b84845462000829565b825550505050565b600090565b620008ff620008f0565b6200090c818484620008c5565b505050565b5b81811015620009345762000928600082620008f5565b60018101905062000912565b5050565b601f82111562000983576200094d81620007f7565b62000958846200080c565b8101602085101562000968578190505b6200098062000977856200080c565b83018262000911565b50505b505050565b600082821c905092915050565b6000620009a86000198460080262000988565b1980831691505092915050565b6000620009c3838362000995565b9150826002028217905092915050565b620009de8262000759565b67ffffffffffffffff811115620009fa57620009f962000764565b5b62000a068254620007c2565b62000a1382828562000938565b600060209050601f83116001811462000a4b576000841562000a36578287015190505b62000a428582620009b5565b86555062000ab2565b601f19841662000a5b86620007f7565b60005b8281101562000a855784890151825560018201915060208501945060208101905062000a5e565b8683101562000aa5578489015162000aa1601f89168262000995565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000af6826200087f565b915062000b03836200087f565b925082820190508082111562000b1e5762000b1d62000aba565b5b92915050565b600082825260208201905092915050565b7f45524332303a20466967687458617070726f76652066726f6d20746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b600062000b93602a8362000b24565b915062000ba08262000b35565b604082019050919050565b6000602082019050818103600083015262000bc68162000b84565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20466967687460008201527f5861646472657373000000000000000000000000000000000000000000000000602082015250565b600062000c2b60288362000b24565b915062000c388262000bcd565b604082019050919050565b6000602082019050818103600083015262000c5e8162000c1c565b9050919050565b62000c70816200087f565b82525050565b600060208201905062000c8d600083018462000c65565b92915050565b7f45524332303a206d696e7420466967687458746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600062000cf160258362000b24565b915062000cfe8262000c93565b604082019050919050565b6000602082019050818103600083015262000d248162000ce2565b9050919050565b60805161323062000d6a600039600081816107b801528181611eec01528181611fcd01528181611ff40152818161209001526120b701526132306000f3fe6080604052600436106101c65760003560e01c806375f0a874116100f7578063a9059cbb11610095578063dd62ed3e11610064578063dd62ed3e14610647578063e2f4560514610684578063e9504fbf146106af578063f2fde38b146106d8576101cd565b8063a9059cbb14610589578063c04a5414146105c6578063d4698016146105f1578063d85ba0631461061c576101cd565b806393ec52de116100d157806393ec52de146104cd57806395d89b41146104f85780639a7a23d614610523578063a457c2d71461054c576101cd565b806375f0a874146104605780638a8c523c1461048b5780638da5cb5b146104a2576101cd565b806339509351116101645780636a486a8e1161013e5780636a486a8e146103b65780636ddd1713146103e157806370a082311461040c578063715018a614610449576101cd565b8063395093511461032357806349bd5a5e146103605780634ada218b1461038b576101cd565b806318160ddd116101a057806318160ddd1461026557806323b872dd1461029057806327c8f835146102cd578063313ce567146102f8576101cd565b806306fdde03146101d2578063095ea7b3146101fd5780631694505e1461023a576101cd565b366101cd57005b600080fd5b3480156101de57600080fd5b506101e7610701565b6040516101f49190612216565b60405180910390f35b34801561020957600080fd5b50610224600480360381019061021f91906122d1565b610793565b604051610231919061232c565b60405180910390f35b34801561024657600080fd5b5061024f6107b6565b60405161025c91906123a6565b60405180910390f35b34801561027157600080fd5b5061027a6107da565b60405161028791906123d0565b60405180910390f35b34801561029c57600080fd5b506102b760048036038101906102b291906123eb565b6107e4565b6040516102c4919061232c565b60405180910390f35b3480156102d957600080fd5b506102e2610813565b6040516102ef919061244d565b60405180910390f35b34801561030457600080fd5b5061030d610819565b60405161031a9190612484565b60405180910390f35b34801561032f57600080fd5b5061034a600480360381019061034591906122d1565b610822565b604051610357919061232c565b60405180910390f35b34801561036c57600080fd5b50610375610859565b604051610382919061244d565b60405180910390f35b34801561039757600080fd5b506103a061087f565b6040516103ad919061232c565b60405180910390f35b3480156103c257600080fd5b506103cb610892565b6040516103d891906123d0565b60405180910390f35b3480156103ed57600080fd5b506103f6610898565b604051610403919061232c565b60405180910390f35b34801561041857600080fd5b50610433600480360381019061042e919061249f565b6108ab565b60405161044091906123d0565b60405180910390f35b34801561045557600080fd5b5061045e6108f3565b005b34801561046c57600080fd5b50610475610907565b604051610482919061244d565b60405180910390f35b34801561049757600080fd5b506104a061092d565b005b3480156104ae57600080fd5b506104b76109bd565b6040516104c4919061244d565b60405180910390f35b3480156104d957600080fd5b506104e26109e7565b6040516104ef91906123d0565b60405180910390f35b34801561050457600080fd5b5061050d6109ed565b60405161051a9190612216565b60405180910390f35b34801561052f57600080fd5b5061054a600480360381019061054591906124f8565b610a7f565b005b34801561055857600080fd5b50610573600480360381019061056e91906122d1565b610b25565b604051610580919061232c565b60405180910390f35b34801561059557600080fd5b506105b060048036038101906105ab91906122d1565b610b9c565b6040516105bd919061232c565b60405180910390f35b3480156105d257600080fd5b506105db610bbf565b6040516105e8919061244d565b60405180910390f35b3480156105fd57600080fd5b50610606610be5565b604051610613919061244d565b60405180910390f35b34801561062857600080fd5b50610631610c0b565b60405161063e91906123d0565b60405180910390f35b34801561065357600080fd5b5061066e60048036038101906106699190612538565b610c11565b60405161067b91906123d0565b60405180910390f35b34801561069057600080fd5b50610699610c98565b6040516106a691906123d0565b60405180910390f35b3480156106bb57600080fd5b506106d660048036038101906106d191906124f8565b610c9e565b005b3480156106e457600080fd5b506106ff60048036038101906106fa919061249f565b610d4f565b005b606060048054610710906125a7565b80601f016020809104026020016040519081016040528092919081815260200182805461073c906125a7565b80156107895780601f1061075e57610100808354040283529160200191610789565b820191906000526020600020905b81548152906001019060200180831161076c57829003601f168201915b5050505050905090565b60008061079e610dd2565b90506107ab818585610dda565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b6000806107ef610dd2565b90506107fc858285610fa3565b61080785858561102f565b60019150509392505050565b61dead81565b60006012905090565b60008061082d610dd2565b905061084e81858561083f8589610c11565b6108499190612607565b610dda565b600191505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a60149054906101000a900460ff1681565b60105481565b600a60159054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108fb611704565b6109056000611782565b565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610935611704565b600a60149054906101000a900460ff1615610985576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097c90612687565b60405180910390fd5b6001600a60146101000a81548160ff0219169083151502179055506001600a60156101000a81548160ff021916908315150217905550565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60035481565b6060600580546109fc906125a7565b80601f0160208091040260200160405190810160405280929190818152602001828054610a28906125a7565b8015610a755780601f10610a4a57610100808354040283529160200191610a75565b820191906000526020600020905b815481529060010190602001808311610a5857829003601f168201915b5050505050905090565b610a87611704565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0e9061273f565b60405180910390fd5b610b218282611848565b5050565b600080610b30610dd2565b90506000610b3e8286610c11565b905083811015610b83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7a906127d1565b60405180910390fd5b610b908286868403610dda565b60019250505092915050565b600080610ba7610dd2565b9050610bb481858561102f565b600191505092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600b5481565b610ca6611704565b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051610d43919061232c565b60405180910390a25050565b610d57611704565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610dc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbd90612863565b60405180910390fd5b610dcf81611782565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e40906128f5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610eb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eaf90612987565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f9691906123d0565b60405180910390a3505050565b6000610faf8484610c11565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611029578181101561101b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611012906129f3565b60405180910390fd5b6110288484848403610dda565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361109e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109590612a85565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361110d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110490612b17565b60405180910390fd5b600a60149054906101000a900460ff16806111715750601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b806111c55750601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611204576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fb90612b83565b60405180910390fd5b6000810361121d57611218838360006118e9565b6116ff565b6000611228306108ab565b90506000600b54821015905080801561124d5750600a60159054906101000a900460ff165b80156112665750600a60169054906101000a900460ff16155b80156112bb5750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156113115750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156113675750601860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156113ab576001600a60166101000a81548160ff02191690831515021790555061138f611b5f565b6000600a60166101000a81548160ff0219169083151502179055505b6000600a60169054906101000a900460ff16159050601860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806114615750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561146b57600090505b600081156116e657601960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156114ce57506000601054115b1561159c576114fc6127106114ee60105488611e0190919063ffffffff16565b611e1790919063ffffffff16565b90506010546013548261150f9190612ba3565b6115199190612c14565b6016600082825461152a9190612607565b92505081905550601054601154826115429190612ba3565b61154c9190612c14565b6014600082825461155d9190612607565b92505081905550601054601254826115759190612ba3565b61157f9190612c14565b601560008282546115909190612607565b925050819055506116c2565b601960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156115f757506000600c54115b156116c157611625612710611617600c5488611e0190919063ffffffff16565b611e1790919063ffffffff16565b9050600c54600f54826116389190612ba3565b6116429190612c14565b601660008282546116539190612607565b92505081905550600c54600d548261166b9190612ba3565b6116759190612c14565b601460008282546116869190612607565b92505081905550600c54600e548261169e9190612ba3565b6116a89190612c14565b601560008282546116b99190612607565b925050819055505b5b60008111156116d7576116d68730836118e9565b5b80856116e39190612c45565b94505b6116f18787876118e9565b601754601081905550505050505b505050565b61170c610dd2565b73ffffffffffffffffffffffffffffffffffffffff1661172a6109bd565b73ffffffffffffffffffffffffffffffffffffffff1614611780576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177790612ceb565b60405180910390fd5b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611958576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194f90612d7d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119be90612e0f565b60405180910390fd5b6119d2838383611e2d565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611a58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4f90612ea1565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611b4691906123d0565b60405180910390a3611b59848484611e32565b50505050565b6000611b6a306108ab565b90506000601554601454601654611b819190612607565b611b8b9190612607565b905060008060028360165486611ba19190612ba3565b611bab9190612c14565b611bb59190612c14565b90506000611bcc8286611e3790919063ffffffff16565b90506000479050611bdc82611e4d565b6000611bf18247611e3790919063ffffffff16565b90506000611c1c87611c0e60145485611e0190919063ffffffff16565b611e1790919063ffffffff16565b90506000611c4788611c3960155486611e0190919063ffffffff16565b611e1790919063ffffffff16565b90506000818385611c589190612c45565b611c629190612c45565b9050600060168190555060006014819055506000601581905550600087118015611c8c5750600081115b15611cd957611c9b878261208a565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601654604051611cd093929190612ec1565b60405180910390a15b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051611d1f90612f29565b60006040518083038185875af1925050503d8060008114611d5c576040519150601f19603f3d011682016040523d82523d6000602084013e611d61565b606091505b505080985050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051611dad90612f29565b60006040518083038185875af1925050503d8060008114611dea576040519150601f19603f3d011682016040523d82523d6000602084013e611def565b606091505b50508098505050505050505050505050565b60008183611e0f9190612ba3565b905092915050565b60008183611e259190612c14565b905092915050565b505050565b505050565b60008183611e459190612c45565b905092915050565b6000600267ffffffffffffffff811115611e6a57611e69612f3e565b5b604051908082528060200260200182016040528015611e985781602001602082028036833780820191505090505b5090503081600081518110611eb057611eaf612f6d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611f55573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f799190612fb1565b81600181518110611f8d57611f8c612f6d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611ff2307f000000000000000000000000000000000000000000000000000000000000000084610dda565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016120549594939291906130d7565b600060405180830381600087803b15801561206e57600080fd5b505af1158015612082573d6000803e3d6000fd5b505050505050565b6120b5307f000000000000000000000000000000000000000000000000000000000000000084610dda565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b815260040161213c96959493929190613131565b60606040518083038185885af115801561215a573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061217f91906131a7565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156121c05780820151818401526020810190506121a5565b60008484015250505050565b6000601f19601f8301169050919050565b60006121e882612186565b6121f28185612191565b93506122028185602086016121a2565b61220b816121cc565b840191505092915050565b6000602082019050818103600083015261223081846121dd565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006122688261223d565b9050919050565b6122788161225d565b811461228357600080fd5b50565b6000813590506122958161226f565b92915050565b6000819050919050565b6122ae8161229b565b81146122b957600080fd5b50565b6000813590506122cb816122a5565b92915050565b600080604083850312156122e8576122e7612238565b5b60006122f685828601612286565b9250506020612307858286016122bc565b9150509250929050565b60008115159050919050565b61232681612311565b82525050565b6000602082019050612341600083018461231d565b92915050565b6000819050919050565b600061236c6123676123628461223d565b612347565b61223d565b9050919050565b600061237e82612351565b9050919050565b600061239082612373565b9050919050565b6123a081612385565b82525050565b60006020820190506123bb6000830184612397565b92915050565b6123ca8161229b565b82525050565b60006020820190506123e560008301846123c1565b92915050565b60008060006060848603121561240457612403612238565b5b600061241286828701612286565b935050602061242386828701612286565b9250506040612434868287016122bc565b9150509250925092565b6124478161225d565b82525050565b6000602082019050612462600083018461243e565b92915050565b600060ff82169050919050565b61247e81612468565b82525050565b60006020820190506124996000830184612475565b92915050565b6000602082840312156124b5576124b4612238565b5b60006124c384828501612286565b91505092915050565b6124d581612311565b81146124e057600080fd5b50565b6000813590506124f2816124cc565b92915050565b6000806040838503121561250f5761250e612238565b5b600061251d85828601612286565b925050602061252e858286016124e3565b9150509250929050565b6000806040838503121561254f5761254e612238565b5b600061255d85828601612286565b925050602061256e85828601612286565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806125bf57607f821691505b6020821081036125d2576125d1612578565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006126128261229b565b915061261d8361229b565b9250828201905080821115612635576126346125d8565b5b92915050565b7f54726164696e6720616c7265616479204669676874586163746976652e000000600082015250565b6000612671601d83612191565b915061267c8261263b565b602082019050919050565b600060208201905081810360008301526126a081612664565b9050919050565b7f5468652050616e63616b655377617020706169722063616e6e6f74206265204660008201527f696768745872656d6f7665642066726f6d206175746f6d617465644d61726b6560208201527f744d616b65725061697273000000000000000000000000000000000000000000604082015250565b6000612729604b83612191565b9150612734826126a7565b606082019050919050565b600060208201905081810360008301526127588161271c565b9050919050565b7f45524332303a2064656372656173656420466967687458616c6c6f77616e636560008201527f2062656c6f77207a65726f000000000000000000000000000000000000000000602082015250565b60006127bb602b83612191565b91506127c68261275f565b604082019050919050565b600060208201905081810360008301526127ea816127ae565b9050919050565b7f4f776e61626c653a206e6577206f776e6572206973207468654669676874582060008201527f7a65726f20616464726573730000000000000000000000000000000000000000602082015250565b600061284d602c83612191565b9150612858826127f1565b604082019050919050565b6000602082019050818103600083015261287c81612840565b9050919050565b7f45524332303a20466967687458617070726f76652066726f6d20746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b60006128df602a83612191565b91506128ea82612883565b604082019050919050565b6000602082019050818103600083015261290e816128d2565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20466967687460008201527f5861646472657373000000000000000000000000000000000000000000000000602082015250565b6000612971602883612191565b915061297c82612915565b604082019050919050565b600060208201905081810360008301526129a081612964565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006129dd601d83612191565b91506129e8826129a7565b602082019050919050565b60006020820190508181036000830152612a0c816129d0565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865204669676874587a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000612a6f602b83612191565b9150612a7a82612a13565b604082019050919050565b60006020820190508181036000830152612a9e81612a62565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612b01602383612191565b9150612b0c82612aa5565b604082019050919050565b60006020820190508181036000830152612b3081612af4565b9050919050565b7f54726164696e67206e6f742079657420656e61626c6564210000000000000000600082015250565b6000612b6d601883612191565b9150612b7882612b37565b602082019050919050565b60006020820190508181036000830152612b9c81612b60565b9050919050565b6000612bae8261229b565b9150612bb98361229b565b9250828202612bc78161229b565b91508282048414831517612bde57612bdd6125d8565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612c1f8261229b565b9150612c2a8361229b565b925082612c3a57612c39612be5565b5b828204905092915050565b6000612c508261229b565b9150612c5b8361229b565b9250828203905081811115612c7357612c726125d8565b5b92915050565b7f4f776e61626c653a2063616c6c6572204669676874586973206e6f742074686560008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b6000612cd5602683612191565b9150612ce082612c79565b604082019050919050565b60006020820190508181036000830152612d0481612cc8565b9050919050565b7f45524332303a204669676874587472616e736665722066726f6d20746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000612d67602b83612191565b9150612d7282612d0b565b604082019050919050565b60006020820190508181036000830152612d9681612d5a565b9050919050565b7f46696768745845524332303a207472616e7366657220746f20746865207a657260008201527f6f20616464726573730000000000000000000000000000000000000000000000602082015250565b6000612df9602983612191565b9150612e0482612d9d565b604082019050919050565b60006020820190508181036000830152612e2881612dec565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742046696768745865786360008201527f656564732062616c616e63650000000000000000000000000000000000000000602082015250565b6000612e8b602c83612191565b9150612e9682612e2f565b604082019050919050565b60006020820190508181036000830152612eba81612e7e565b9050919050565b6000606082019050612ed660008301866123c1565b612ee360208301856123c1565b612ef060408301846123c1565b949350505050565b600081905092915050565b50565b6000612f13600083612ef8565b9150612f1e82612f03565b600082019050919050565b6000612f3482612f06565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050612fab8161226f565b92915050565b600060208284031215612fc757612fc6612238565b5b6000612fd584828501612f9c565b91505092915050565b6000819050919050565b6000613003612ffe612ff984612fde565b612347565b61229b565b9050919050565b61301381612fe8565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61304e8161225d565b82525050565b60006130608383613045565b60208301905092915050565b6000602082019050919050565b600061308482613019565b61308e8185613024565b935061309983613035565b8060005b838110156130ca5781516130b18882613054565b97506130bc8361306c565b92505060018101905061309d565b5085935050505092915050565b600060a0820190506130ec60008301886123c1565b6130f9602083018761300a565b818103604083015261310b8186613079565b905061311a606083018561243e565b61312760808301846123c1565b9695505050505050565b600060c082019050613146600083018961243e565b61315360208301886123c1565b613160604083018761300a565b61316d606083018661300a565b61317a608083018561243e565b61318760a08301846123c1565b979650505050505050565b6000815190506131a1816122a5565b92915050565b6000806000606084860312156131c0576131bf612238565b5b60006131ce86828701613192565b93505060206131df86828701613192565b92505060406131f086828701613192565b915050925092509256fea264697066735822122061ae3a222438e8aabc855d87e9d15bac504f5563fd91e1fbbcd0ac99af093a3a64736f6c63430008110033

Deployed Bytecode

0x6080604052600436106101c65760003560e01c806375f0a874116100f7578063a9059cbb11610095578063dd62ed3e11610064578063dd62ed3e14610647578063e2f4560514610684578063e9504fbf146106af578063f2fde38b146106d8576101cd565b8063a9059cbb14610589578063c04a5414146105c6578063d4698016146105f1578063d85ba0631461061c576101cd565b806393ec52de116100d157806393ec52de146104cd57806395d89b41146104f85780639a7a23d614610523578063a457c2d71461054c576101cd565b806375f0a874146104605780638a8c523c1461048b5780638da5cb5b146104a2576101cd565b806339509351116101645780636a486a8e1161013e5780636a486a8e146103b65780636ddd1713146103e157806370a082311461040c578063715018a614610449576101cd565b8063395093511461032357806349bd5a5e146103605780634ada218b1461038b576101cd565b806318160ddd116101a057806318160ddd1461026557806323b872dd1461029057806327c8f835146102cd578063313ce567146102f8576101cd565b806306fdde03146101d2578063095ea7b3146101fd5780631694505e1461023a576101cd565b366101cd57005b600080fd5b3480156101de57600080fd5b506101e7610701565b6040516101f49190612216565b60405180910390f35b34801561020957600080fd5b50610224600480360381019061021f91906122d1565b610793565b604051610231919061232c565b60405180910390f35b34801561024657600080fd5b5061024f6107b6565b60405161025c91906123a6565b60405180910390f35b34801561027157600080fd5b5061027a6107da565b60405161028791906123d0565b60405180910390f35b34801561029c57600080fd5b506102b760048036038101906102b291906123eb565b6107e4565b6040516102c4919061232c565b60405180910390f35b3480156102d957600080fd5b506102e2610813565b6040516102ef919061244d565b60405180910390f35b34801561030457600080fd5b5061030d610819565b60405161031a9190612484565b60405180910390f35b34801561032f57600080fd5b5061034a600480360381019061034591906122d1565b610822565b604051610357919061232c565b60405180910390f35b34801561036c57600080fd5b50610375610859565b604051610382919061244d565b60405180910390f35b34801561039757600080fd5b506103a061087f565b6040516103ad919061232c565b60405180910390f35b3480156103c257600080fd5b506103cb610892565b6040516103d891906123d0565b60405180910390f35b3480156103ed57600080fd5b506103f6610898565b604051610403919061232c565b60405180910390f35b34801561041857600080fd5b50610433600480360381019061042e919061249f565b6108ab565b60405161044091906123d0565b60405180910390f35b34801561045557600080fd5b5061045e6108f3565b005b34801561046c57600080fd5b50610475610907565b604051610482919061244d565b60405180910390f35b34801561049757600080fd5b506104a061092d565b005b3480156104ae57600080fd5b506104b76109bd565b6040516104c4919061244d565b60405180910390f35b3480156104d957600080fd5b506104e26109e7565b6040516104ef91906123d0565b60405180910390f35b34801561050457600080fd5b5061050d6109ed565b60405161051a9190612216565b60405180910390f35b34801561052f57600080fd5b5061054a600480360381019061054591906124f8565b610a7f565b005b34801561055857600080fd5b50610573600480360381019061056e91906122d1565b610b25565b604051610580919061232c565b60405180910390f35b34801561059557600080fd5b506105b060048036038101906105ab91906122d1565b610b9c565b6040516105bd919061232c565b60405180910390f35b3480156105d257600080fd5b506105db610bbf565b6040516105e8919061244d565b60405180910390f35b3480156105fd57600080fd5b50610606610be5565b604051610613919061244d565b60405180910390f35b34801561062857600080fd5b50610631610c0b565b60405161063e91906123d0565b60405180910390f35b34801561065357600080fd5b5061066e60048036038101906106699190612538565b610c11565b60405161067b91906123d0565b60405180910390f35b34801561069057600080fd5b50610699610c98565b6040516106a691906123d0565b60405180910390f35b3480156106bb57600080fd5b506106d660048036038101906106d191906124f8565b610c9e565b005b3480156106e457600080fd5b506106ff60048036038101906106fa919061249f565b610d4f565b005b606060048054610710906125a7565b80601f016020809104026020016040519081016040528092919081815260200182805461073c906125a7565b80156107895780601f1061075e57610100808354040283529160200191610789565b820191906000526020600020905b81548152906001019060200180831161076c57829003601f168201915b5050505050905090565b60008061079e610dd2565b90506107ab818585610dda565b600191505092915050565b7f0000000000000000000000004752ba5dbc23f44d87826276bf6fd6b1c372ad2481565b6000600254905090565b6000806107ef610dd2565b90506107fc858285610fa3565b61080785858561102f565b60019150509392505050565b61dead81565b60006012905090565b60008061082d610dd2565b905061084e81858561083f8589610c11565b6108499190612607565b610dda565b600191505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a60149054906101000a900460ff1681565b60105481565b600a60159054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108fb611704565b6109056000611782565b565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610935611704565b600a60149054906101000a900460ff1615610985576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097c90612687565b60405180910390fd5b6001600a60146101000a81548160ff0219169083151502179055506001600a60156101000a81548160ff021916908315150217905550565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60035481565b6060600580546109fc906125a7565b80601f0160208091040260200160405190810160405280929190818152602001828054610a28906125a7565b8015610a755780601f10610a4a57610100808354040283529160200191610a75565b820191906000526020600020905b815481529060010190602001808311610a5857829003601f168201915b5050505050905090565b610a87611704565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0e9061273f565b60405180910390fd5b610b218282611848565b5050565b600080610b30610dd2565b90506000610b3e8286610c11565b905083811015610b83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7a906127d1565b60405180910390fd5b610b908286868403610dda565b60019250505092915050565b600080610ba7610dd2565b9050610bb481858561102f565b600191505092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600b5481565b610ca6611704565b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051610d43919061232c565b60405180910390a25050565b610d57611704565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610dc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbd90612863565b60405180910390fd5b610dcf81611782565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e40906128f5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610eb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eaf90612987565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f9691906123d0565b60405180910390a3505050565b6000610faf8484610c11565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611029578181101561101b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611012906129f3565b60405180910390fd5b6110288484848403610dda565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361109e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109590612a85565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361110d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110490612b17565b60405180910390fd5b600a60149054906101000a900460ff16806111715750601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b806111c55750601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611204576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fb90612b83565b60405180910390fd5b6000810361121d57611218838360006118e9565b6116ff565b6000611228306108ab565b90506000600b54821015905080801561124d5750600a60159054906101000a900460ff165b80156112665750600a60169054906101000a900460ff16155b80156112bb5750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156113115750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156113675750601860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156113ab576001600a60166101000a81548160ff02191690831515021790555061138f611b5f565b6000600a60166101000a81548160ff0219169083151502179055505b6000600a60169054906101000a900460ff16159050601860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806114615750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561146b57600090505b600081156116e657601960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156114ce57506000601054115b1561159c576114fc6127106114ee60105488611e0190919063ffffffff16565b611e1790919063ffffffff16565b90506010546013548261150f9190612ba3565b6115199190612c14565b6016600082825461152a9190612607565b92505081905550601054601154826115429190612ba3565b61154c9190612c14565b6014600082825461155d9190612607565b92505081905550601054601254826115759190612ba3565b61157f9190612c14565b601560008282546115909190612607565b925050819055506116c2565b601960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156115f757506000600c54115b156116c157611625612710611617600c5488611e0190919063ffffffff16565b611e1790919063ffffffff16565b9050600c54600f54826116389190612ba3565b6116429190612c14565b601660008282546116539190612607565b92505081905550600c54600d548261166b9190612ba3565b6116759190612c14565b601460008282546116869190612607565b92505081905550600c54600e548261169e9190612ba3565b6116a89190612c14565b601560008282546116b99190612607565b925050819055505b5b60008111156116d7576116d68730836118e9565b5b80856116e39190612c45565b94505b6116f18787876118e9565b601754601081905550505050505b505050565b61170c610dd2565b73ffffffffffffffffffffffffffffffffffffffff1661172a6109bd565b73ffffffffffffffffffffffffffffffffffffffff1614611780576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177790612ceb565b60405180910390fd5b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611958576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194f90612d7d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119be90612e0f565b60405180910390fd5b6119d2838383611e2d565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611a58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4f90612ea1565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611b4691906123d0565b60405180910390a3611b59848484611e32565b50505050565b6000611b6a306108ab565b90506000601554601454601654611b819190612607565b611b8b9190612607565b905060008060028360165486611ba19190612ba3565b611bab9190612c14565b611bb59190612c14565b90506000611bcc8286611e3790919063ffffffff16565b90506000479050611bdc82611e4d565b6000611bf18247611e3790919063ffffffff16565b90506000611c1c87611c0e60145485611e0190919063ffffffff16565b611e1790919063ffffffff16565b90506000611c4788611c3960155486611e0190919063ffffffff16565b611e1790919063ffffffff16565b90506000818385611c589190612c45565b611c629190612c45565b9050600060168190555060006014819055506000601581905550600087118015611c8c5750600081115b15611cd957611c9b878261208a565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601654604051611cd093929190612ec1565b60405180910390a15b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051611d1f90612f29565b60006040518083038185875af1925050503d8060008114611d5c576040519150601f19603f3d011682016040523d82523d6000602084013e611d61565b606091505b505080985050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051611dad90612f29565b60006040518083038185875af1925050503d8060008114611dea576040519150601f19603f3d011682016040523d82523d6000602084013e611def565b606091505b50508098505050505050505050505050565b60008183611e0f9190612ba3565b905092915050565b60008183611e259190612c14565b905092915050565b505050565b505050565b60008183611e459190612c45565b905092915050565b6000600267ffffffffffffffff811115611e6a57611e69612f3e565b5b604051908082528060200260200182016040528015611e985781602001602082028036833780820191505090505b5090503081600081518110611eb057611eaf612f6d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000004752ba5dbc23f44d87826276bf6fd6b1c372ad2473ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611f55573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f799190612fb1565b81600181518110611f8d57611f8c612f6d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611ff2307f0000000000000000000000004752ba5dbc23f44d87826276bf6fd6b1c372ad2484610dda565b7f0000000000000000000000004752ba5dbc23f44d87826276bf6fd6b1c372ad2473ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016120549594939291906130d7565b600060405180830381600087803b15801561206e57600080fd5b505af1158015612082573d6000803e3d6000fd5b505050505050565b6120b5307f0000000000000000000000004752ba5dbc23f44d87826276bf6fd6b1c372ad2484610dda565b7f0000000000000000000000004752ba5dbc23f44d87826276bf6fd6b1c372ad2473ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b815260040161213c96959493929190613131565b60606040518083038185885af115801561215a573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061217f91906131a7565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156121c05780820151818401526020810190506121a5565b60008484015250505050565b6000601f19601f8301169050919050565b60006121e882612186565b6121f28185612191565b93506122028185602086016121a2565b61220b816121cc565b840191505092915050565b6000602082019050818103600083015261223081846121dd565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006122688261223d565b9050919050565b6122788161225d565b811461228357600080fd5b50565b6000813590506122958161226f565b92915050565b6000819050919050565b6122ae8161229b565b81146122b957600080fd5b50565b6000813590506122cb816122a5565b92915050565b600080604083850312156122e8576122e7612238565b5b60006122f685828601612286565b9250506020612307858286016122bc565b9150509250929050565b60008115159050919050565b61232681612311565b82525050565b6000602082019050612341600083018461231d565b92915050565b6000819050919050565b600061236c6123676123628461223d565b612347565b61223d565b9050919050565b600061237e82612351565b9050919050565b600061239082612373565b9050919050565b6123a081612385565b82525050565b60006020820190506123bb6000830184612397565b92915050565b6123ca8161229b565b82525050565b60006020820190506123e560008301846123c1565b92915050565b60008060006060848603121561240457612403612238565b5b600061241286828701612286565b935050602061242386828701612286565b9250506040612434868287016122bc565b9150509250925092565b6124478161225d565b82525050565b6000602082019050612462600083018461243e565b92915050565b600060ff82169050919050565b61247e81612468565b82525050565b60006020820190506124996000830184612475565b92915050565b6000602082840312156124b5576124b4612238565b5b60006124c384828501612286565b91505092915050565b6124d581612311565b81146124e057600080fd5b50565b6000813590506124f2816124cc565b92915050565b6000806040838503121561250f5761250e612238565b5b600061251d85828601612286565b925050602061252e858286016124e3565b9150509250929050565b6000806040838503121561254f5761254e612238565b5b600061255d85828601612286565b925050602061256e85828601612286565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806125bf57607f821691505b6020821081036125d2576125d1612578565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006126128261229b565b915061261d8361229b565b9250828201905080821115612635576126346125d8565b5b92915050565b7f54726164696e6720616c7265616479204669676874586163746976652e000000600082015250565b6000612671601d83612191565b915061267c8261263b565b602082019050919050565b600060208201905081810360008301526126a081612664565b9050919050565b7f5468652050616e63616b655377617020706169722063616e6e6f74206265204660008201527f696768745872656d6f7665642066726f6d206175746f6d617465644d61726b6560208201527f744d616b65725061697273000000000000000000000000000000000000000000604082015250565b6000612729604b83612191565b9150612734826126a7565b606082019050919050565b600060208201905081810360008301526127588161271c565b9050919050565b7f45524332303a2064656372656173656420466967687458616c6c6f77616e636560008201527f2062656c6f77207a65726f000000000000000000000000000000000000000000602082015250565b60006127bb602b83612191565b91506127c68261275f565b604082019050919050565b600060208201905081810360008301526127ea816127ae565b9050919050565b7f4f776e61626c653a206e6577206f776e6572206973207468654669676874582060008201527f7a65726f20616464726573730000000000000000000000000000000000000000602082015250565b600061284d602c83612191565b9150612858826127f1565b604082019050919050565b6000602082019050818103600083015261287c81612840565b9050919050565b7f45524332303a20466967687458617070726f76652066726f6d20746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b60006128df602a83612191565b91506128ea82612883565b604082019050919050565b6000602082019050818103600083015261290e816128d2565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20466967687460008201527f5861646472657373000000000000000000000000000000000000000000000000602082015250565b6000612971602883612191565b915061297c82612915565b604082019050919050565b600060208201905081810360008301526129a081612964565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006129dd601d83612191565b91506129e8826129a7565b602082019050919050565b60006020820190508181036000830152612a0c816129d0565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865204669676874587a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000612a6f602b83612191565b9150612a7a82612a13565b604082019050919050565b60006020820190508181036000830152612a9e81612a62565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612b01602383612191565b9150612b0c82612aa5565b604082019050919050565b60006020820190508181036000830152612b3081612af4565b9050919050565b7f54726164696e67206e6f742079657420656e61626c6564210000000000000000600082015250565b6000612b6d601883612191565b9150612b7882612b37565b602082019050919050565b60006020820190508181036000830152612b9c81612b60565b9050919050565b6000612bae8261229b565b9150612bb98361229b565b9250828202612bc78161229b565b91508282048414831517612bde57612bdd6125d8565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612c1f8261229b565b9150612c2a8361229b565b925082612c3a57612c39612be5565b5b828204905092915050565b6000612c508261229b565b9150612c5b8361229b565b9250828203905081811115612c7357612c726125d8565b5b92915050565b7f4f776e61626c653a2063616c6c6572204669676874586973206e6f742074686560008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b6000612cd5602683612191565b9150612ce082612c79565b604082019050919050565b60006020820190508181036000830152612d0481612cc8565b9050919050565b7f45524332303a204669676874587472616e736665722066726f6d20746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000612d67602b83612191565b9150612d7282612d0b565b604082019050919050565b60006020820190508181036000830152612d9681612d5a565b9050919050565b7f46696768745845524332303a207472616e7366657220746f20746865207a657260008201527f6f20616464726573730000000000000000000000000000000000000000000000602082015250565b6000612df9602983612191565b9150612e0482612d9d565b604082019050919050565b60006020820190508181036000830152612e2881612dec565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742046696768745865786360008201527f656564732062616c616e63650000000000000000000000000000000000000000602082015250565b6000612e8b602c83612191565b9150612e9682612e2f565b604082019050919050565b60006020820190508181036000830152612eba81612e7e565b9050919050565b6000606082019050612ed660008301866123c1565b612ee360208301856123c1565b612ef060408301846123c1565b949350505050565b600081905092915050565b50565b6000612f13600083612ef8565b9150612f1e82612f03565b600082019050919050565b6000612f3482612f06565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050612fab8161226f565b92915050565b600060208284031215612fc757612fc6612238565b5b6000612fd584828501612f9c565b91505092915050565b6000819050919050565b6000613003612ffe612ff984612fde565b612347565b61229b565b9050919050565b61301381612fe8565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61304e8161225d565b82525050565b60006130608383613045565b60208301905092915050565b6000602082019050919050565b600061308482613019565b61308e8185613024565b935061309983613035565b8060005b838110156130ca5781516130b18882613054565b97506130bc8361306c565b92505060018101905061309d565b5085935050505092915050565b600060a0820190506130ec60008301886123c1565b6130f9602083018761300a565b818103604083015261310b8186613079565b905061311a606083018561243e565b61312760808301846123c1565b9695505050505050565b600060c082019050613146600083018961243e565b61315360208301886123c1565b613160604083018761300a565b61316d606083018661300a565b61317a608083018561243e565b61318760a08301846123c1565b979650505050505050565b6000815190506131a1816122a5565b92915050565b6000806000606084860312156131c0576131bf612238565b5b60006131ce86828701613192565b93505060206131df86828701613192565b92505060406131f086828701613192565b915050925092509256fea264697066735822122061ae3a222438e8aabc855d87e9d15bac504f5563fd91e1fbbcd0ac99af093a3a64736f6c63430008110033

Deployed Bytecode Sourcemap

26519:8670:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7304:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9141:242;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26595:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8081:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9391:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26803:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7923:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9694:270;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26653:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26865:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27151:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26898:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8252:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1854:103;;;;;;;;;;;;;:::i;:::-;;26690:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29354:179;;;;;;;;;;;;;:::i;:::-;;1207:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6843:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7523:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29758:260;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9972:511;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8635:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26727:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26766:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27001:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8932:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26959:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29543:207;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2112:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7304:100;7358:13;7391:5;7384:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7304:100;:::o;9141:242::-;9260:4;9282:13;9298:12;:10;:12::i;:::-;9282:28;;9321:32;9330:5;9337:7;9346:6;9321:8;:32::i;:::-;9371:4;9364:11;;;9141:242;;;;:::o;26595:51::-;;;:::o;8081:108::-;8142:7;8169:12;;8162:19;;8081:108;:::o;9391:295::-;9522:4;9539:15;9557:12;:10;:12::i;:::-;9539:30;;9580:38;9596:4;9602:7;9611:6;9580:15;:38::i;:::-;9629:27;9639:4;9645:2;9649:6;9629:9;:27::i;:::-;9674:4;9667:11;;;9391:295;;;;;:::o;26803:53::-;26849:6;26803:53;:::o;7923:93::-;7981:5;8006:2;7999:9;;7923:93;:::o;9694:270::-;9809:4;9831:13;9847:12;:10;:12::i;:::-;9831:28;;9870:64;9879:5;9886:7;9923:10;9895:25;9905:5;9912:7;9895:9;:25::i;:::-;:38;;;;:::i;:::-;9870:8;:64::i;:::-;9952:4;9945:11;;;9694:270;;;;:::o;26653:28::-;;;;;;;;;;;;;:::o;26865:26::-;;;;;;;;;;;;;:::o;27151:28::-;;;;:::o;26898:23::-;;;;;;;;;;;;;:::o;8252:177::-;8371:7;8403:9;:18;8413:7;8403:18;;;;;;;;;;;;;;;;8396:25;;8252:177;;;:::o;1854:103::-;1093:13;:11;:13::i;:::-;1919:30:::1;1946:1;1919:18;:30::i;:::-;1854:103::o:0;26690:30::-;;;;;;;;;;;;;:::o;29354:179::-;1093:13;:11;:13::i;:::-;29416:14:::1;;;;;;;;;;;29415:15;29407:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;29492:4;29475:14;;:21;;;;;;;;;;;;;;;;;;29521:4;29507:11;;:18;;;;;;;;;;;;;;;;;;29354:179::o:0;1207:87::-;1253:7;1280:6;;;;;;;;;;;1273:13;;1207:87;:::o;6843:26::-;;;;:::o;7523:104::-;7579:13;7612:7;7605:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7523:104;:::o;29758:260::-;1093:13;:11;:13::i;:::-;29865::::1;;;;;;;;;;;29857:21;;:4;:21;;::::0;29849:109:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;29969:41;29998:4;30004:5;29969:28;:41::i;:::-;29758:260:::0;;:::o;9972:511::-;10092:4;10114:13;10130:12;:10;:12::i;:::-;10114:28;;10153:24;10180:25;10190:5;10197:7;10180:9;:25::i;:::-;10153:52;;10258:15;10238:16;:35;;10216:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;10380:60;10389:5;10396:7;10424:15;10405:16;:34;10380:8;:60::i;:::-;10471:4;10464:11;;;;9972:511;;;;:::o;8635:234::-;8750:4;8772:13;8788:12;:10;:12::i;:::-;8772:28;;8811;8821:5;8828:2;8832:6;8811:9;:28::i;:::-;8857:4;8850:11;;;8635:234;;;;:::o;26727:32::-;;;;;;;;;;;;;:::o;26766:30::-;;;;;;;;;;;;;:::o;27001:27::-;;;;:::o;8932:201::-;9066:7;9098:11;:18;9110:5;9098:18;;;;;;;;;;;;;;;:27;9117:7;9098:27;;;;;;;;;;;;;;;;9091:34;;8932:201;;;;:::o;26959:33::-;;;;:::o;29543:207::-;1093:13;:11;:13::i;:::-;29684:8:::1;29647:25;:34;29673:7;29647:34;;;;;;;;;;;;;;;;:45;;;;;;;;;;;;;;;;;;29724:7;29708:34;;;29733:8;29708:34;;;;;;:::i;:::-;;;;;;;;29543:207:::0;;:::o;2112:244::-;1093:13;:11;:13::i;:::-;2235:1:::1;2215:22;;:8;:22;;::::0;2193:116:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2320:28;2339:8;2320:18;:28::i;:::-;2112:244:::0;:::o;259:98::-;312:7;339:10;332:17;;259:98;:::o;12657:392::-;12810:1;12793:19;;:5;:19;;;12785:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;12897:1;12878:21;;:7;:21;;;12870:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;12987:6;12957:11;:18;12969:5;12957:18;;;;;;;;;;;;;;;:27;12976:7;12957:27;;;;;;;;;;;;;;;:36;;;;13025:7;13009:32;;13018:5;13009:32;;;13034:6;13009:32;;;;;;:::i;:::-;;;;;;;;12657:392;;;:::o;13057:502::-;13192:24;13219:25;13229:5;13236:7;13219:9;:25::i;:::-;13192:52;;13279:17;13259:16;:37;13255:297;;13359:6;13339:16;:26;;13313:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;13474:51;13483:5;13490:7;13518:6;13499:16;:25;13474:8;:51::i;:::-;13255:297;13181:378;13057:502;;;:::o;30224:2454::-;30372:1;30356:18;;:4;:18;;;30348:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;30455:1;30441:16;;:2;:16;;;30433:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;30516:14;;;;;;;;;;;:49;;;;30534:25;:31;30560:4;30534:31;;;;;;;;;;;;;;;;;;;;;;;;;30516:49;:82;;;;30569:25;:29;30595:2;30569:29;;;;;;;;;;;;;;;;;;;;;;;;;30516:82;30508:119;;;;;;;;;;;;:::i;:::-;;;;;;;;;30652:1;30642:6;:11;30638:93;;30670:28;30686:4;30692:2;30696:1;30670:15;:28::i;:::-;30713:7;;30638:93;30745:28;30776:24;30794:4;30776:9;:24::i;:::-;30745:55;;30813:12;30852:18;;30828:20;:42;;30813:57;;30901:7;:35;;;;;30925:11;;;;;;;;;;;30901:35;:48;;;;;30940:9;;;;;;;;;;;30939:10;30901:48;:82;;;;;30951:26;:32;30978:4;30951:32;;;;;;;;;;;;;;;;;;;;;;;;;30901:82;:131;;;;;31001:25;:31;31027:4;31001:31;;;;;;;;;;;;;;;;;;;;;;;;;31000:32;30901:131;:178;;;;;31050:25;:29;31076:2;31050:29;;;;;;;;;;;;;;;;;;;;;;;;;31049:30;30901:178;30883:313;;;31118:4;31106:9;;:16;;;;;;;;;;;;;;;;;;31139:11;:9;:11::i;:::-;31179:5;31167:9;;:17;;;;;;;;;;;;;;;;;;30883:313;31208:12;31224:9;;;;;;;;;;;31223:10;31208:25;;31250;:31;31276:4;31250:31;;;;;;;;;;;;;;;;;;;;;;;;;:64;;;;31285:25;:29;31311:2;31285:29;;;;;;;;;;;;;;;;;;;;;;;;;31250:64;31246:112;;;31341:5;31331:15;;31246:112;31370:12;31403:7;31399:1187;;;31455:26;:30;31482:2;31455:30;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;31505:1;31489:13;;:17;31455:51;31451:986;;;31534:36;31564:5;31534:25;31545:13;;31534:6;:10;;:25;;;;:::i;:::-;:29;;:36;;;;:::i;:::-;31527:43;;31683:13;;31641:17;;31634:4;:24;;;;:::i;:::-;31633:63;;;;:::i;:::-;31589:19;;:107;;;;;;;:::i;:::-;;;;;;;;31809:13;;31767:17;;31760:4;:24;;;;:::i;:::-;31759:63;;;;:::i;:::-;31715:19;;:107;;;;;;;:::i;:::-;;;;;;;;31939:13;;31895:19;;31888:4;:26;;;;:::i;:::-;31887:65;;;;:::i;:::-;31841:21;;:111;;;;;;;:::i;:::-;;;;;;;;31451:986;;;32014:26;:32;32041:4;32014:32;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;;32065:1;32050:12;;:16;32014:52;32010:427;;;32094:35;32123:5;32094:24;32105:12;;32094:6;:10;;:24;;;;:::i;:::-;:28;;:35;;;;:::i;:::-;32087:42;;32199:12;;32179:16;;32172:4;:23;;;;:::i;:::-;32171:40;;;;:::i;:::-;32148:19;;:63;;;;;;;:::i;:::-;;;;;;;;32281:12;;32261:16;;32254:4;:23;;;;:::i;:::-;32253:40;;;;:::i;:::-;32230:19;;:63;;;;;;;:::i;:::-;;;;;;;;32409:12;;32366:18;;32359:4;:25;;;;:::i;:::-;32358:63;;;;:::i;:::-;32312:21;;:109;;;;;;;:::i;:::-;;;;;;;;32010:427;31451:986;32464:1;32457:4;:8;32453:91;;;32486:42;32502:4;32516;32523;32486:15;:42::i;:::-;32453:91;32570:4;32560:14;;;;;:::i;:::-;;;31399:1187;32598:33;32614:4;32620:2;32624:6;32598:15;:33::i;:::-;32658:12;;32642:13;:28;;;;30337:2341;;;;30224:2454;;;;:::o;1372:138::-;1447:12;:10;:12::i;:::-;1436:23;;:7;:5;:7::i;:::-;:23;;;1428:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;1372:138::o;2516:191::-;2590:16;2609:6;;;;;;;;;;;2590:25;;2635:8;2626:6;;:17;;;;;;;;;;;;;;;;;;2690:8;2659:40;;2680:8;2659:40;;;;;;;;;;;;2579:128;2516:191;:::o;30028:188::-;30147:5;30112:26;:32;30139:4;30112:32;;;;;;;;;;;;;;;;:40;;;;;;;;;;;;;;;;;;30202:5;30168:40;;30196:4;30168:40;;;;;;;;;;;;30028:188;;:::o;10491:901::-;10638:1;10622:18;;:4;:18;;;10614:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;10721:1;10707:16;;:2;:16;;;10699:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;10782:38;10803:4;10809:2;10813:6;10782:20;:38::i;:::-;10833:19;10855:9;:15;10865:4;10855:15;;;;;;;;;;;;;;;;10833:37;;10918:6;10903:11;:21;;10881:115;;;;;;;;;;;;:::i;:::-;;;;;;;;;11064:6;11050:11;:20;11032:9;:15;11042:4;11032:15;;;;;;;;;;;;;;;:38;;;;11273:6;11256:9;:13;11266:2;11256:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;11323:2;11308:26;;11317:4;11308:26;;;11327:6;11308:26;;;;;;:::i;:::-;;;;;;;;11347:37;11367:4;11373:2;11377:6;11347:19;:37::i;:::-;10603:789;10491:901;;;:::o;33577:1607::-;33618:23;33644:24;33662:4;33644:9;:24::i;:::-;33618:50;;33679:25;33777:21;;33742:19;;33707;;:54;;;;:::i;:::-;:91;;;;:::i;:::-;33679:119;;33809:12;33836:23;33950:1;33917:17;33881:19;;33863:15;:37;;;;:::i;:::-;33862:72;;;;:::i;:::-;:89;;;;:::i;:::-;33836:115;;33962:26;33991:36;34011:15;33991;:19;;:36;;;;:::i;:::-;33962:65;;34040:25;34068:21;34040:49;;34102:37;34120:18;34102:17;:37::i;:::-;34152:18;34173:44;34199:17;34173:21;:25;;:44;;;;:::i;:::-;34152:65;;34230:23;34256:82;34310:17;34256:35;34271:19;;34256:10;:14;;:35;;;;:::i;:::-;:39;;:82;;;;:::i;:::-;34230:108;;34351:25;34379:84;34435:17;34379:37;34394:21;;34379:10;:14;;:37;;;;:::i;:::-;:41;;:84;;;;:::i;:::-;34351:112;;34476:23;34559:17;34528:15;34502:10;:41;;;;:::i;:::-;:74;;;;:::i;:::-;34476:100;;34611:1;34589:19;:23;;;;34645:1;34623:19;:23;;;;34681:1;34657:21;:25;;;;34717:1;34699:15;:19;:42;;;;;34740:1;34722:15;:19;34699:42;34695:280;;;34758:47;34772:15;34789;34758:13;:47::i;:::-;34825:138;34858:18;34895:15;34929:19;;34825:138;;;;;;;;:::i;:::-;;;;;;;;34695:280;35009:17;;;;;;;;;;;35001:31;;35040:17;35001:61;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34987:75;;;;;35097:15;;;;;;;;;;;35089:29;;35140:21;35089:87;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35075:101;;;;;33607:1577;;;;;;;;;;33577:1607::o;17216:98::-;17274:7;17305:1;17301;:5;;;;:::i;:::-;17294:12;;17216:98;;;;:::o;17615:::-;17673:7;17704:1;17700;:5;;;;:::i;:::-;17693:12;;17615:98;;;;:::o;13567:125::-;;;;:::o;13700:124::-;;;;:::o;16853:98::-;16911:7;16942:1;16938;:5;;;;:::i;:::-;16931:12;;16853:98;;;;:::o;32686:503::-;32754:21;32792:1;32778:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32754:40;;32823:4;32805;32810:1;32805:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;32849:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;32839:4;32844:1;32839:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;32884:62;32901:4;32916:15;32934:11;32884:8;:62::i;:::-;32985:15;:66;;;33066:11;33092:1;33108:4;33135;33155:15;32985:196;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32743:446;32686:503;:::o;33197:372::-;33280:62;33297:4;33312:15;33330:11;33280:8;:62::i;:::-;33355:15;:31;;;33394:9;33427:4;33447:11;33473:1;33489;33505:15;;;;;;;;;;;33535;33355:206;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;33197:372;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:60::-;3474:3;3495:5;3488:12;;3446:60;;;:::o;3512:142::-;3562:9;3595:53;3613:34;3622:24;3640:5;3622:24;:::i;:::-;3613:34;:::i;:::-;3595:53;:::i;:::-;3582:66;;3512:142;;;:::o;3660:126::-;3710:9;3743:37;3774:5;3743:37;:::i;:::-;3730:50;;3660:126;;;:::o;3792:153::-;3869:9;3902:37;3933:5;3902:37;:::i;:::-;3889:50;;3792:153;;;:::o;3951:185::-;4065:64;4123:5;4065:64;:::i;:::-;4060:3;4053:77;3951:185;;:::o;4142:276::-;4262:4;4300:2;4289:9;4285:18;4277:26;;4313:98;4408:1;4397:9;4393:17;4384:6;4313:98;:::i;:::-;4142:276;;;;:::o;4424:118::-;4511:24;4529:5;4511:24;:::i;:::-;4506:3;4499:37;4424:118;;:::o;4548:222::-;4641:4;4679:2;4668:9;4664:18;4656:26;;4692:71;4760:1;4749:9;4745:17;4736:6;4692:71;:::i;:::-;4548:222;;;;:::o;4776:619::-;4853:6;4861;4869;4918:2;4906:9;4897:7;4893:23;4889:32;4886:119;;;4924:79;;:::i;:::-;4886:119;5044:1;5069:53;5114:7;5105:6;5094:9;5090:22;5069:53;:::i;:::-;5059:63;;5015:117;5171:2;5197:53;5242:7;5233:6;5222:9;5218:22;5197:53;:::i;:::-;5187:63;;5142:118;5299:2;5325:53;5370:7;5361:6;5350:9;5346:22;5325:53;:::i;:::-;5315:63;;5270:118;4776:619;;;;;:::o;5401:118::-;5488:24;5506:5;5488:24;:::i;:::-;5483:3;5476:37;5401:118;;:::o;5525:222::-;5618:4;5656:2;5645:9;5641:18;5633:26;;5669:71;5737:1;5726:9;5722:17;5713:6;5669:71;:::i;:::-;5525:222;;;;:::o;5753:86::-;5788:7;5828:4;5821:5;5817:16;5806:27;;5753:86;;;:::o;5845:112::-;5928:22;5944:5;5928:22;:::i;:::-;5923:3;5916:35;5845:112;;:::o;5963:214::-;6052:4;6090:2;6079:9;6075:18;6067:26;;6103:67;6167:1;6156:9;6152:17;6143:6;6103:67;:::i;:::-;5963:214;;;;:::o;6183:329::-;6242:6;6291:2;6279:9;6270:7;6266:23;6262:32;6259:119;;;6297:79;;:::i;:::-;6259:119;6417:1;6442:53;6487:7;6478:6;6467:9;6463:22;6442:53;:::i;:::-;6432:63;;6388:117;6183:329;;;;:::o;6518:116::-;6588:21;6603:5;6588:21;:::i;:::-;6581:5;6578:32;6568:60;;6624:1;6621;6614:12;6568:60;6518:116;:::o;6640:133::-;6683:5;6721:6;6708:20;6699:29;;6737:30;6761:5;6737:30;:::i;:::-;6640:133;;;;:::o;6779:468::-;6844:6;6852;6901:2;6889:9;6880:7;6876:23;6872:32;6869:119;;;6907:79;;:::i;:::-;6869:119;7027:1;7052:53;7097:7;7088:6;7077:9;7073:22;7052:53;:::i;:::-;7042:63;;6998:117;7154:2;7180:50;7222:7;7213:6;7202:9;7198:22;7180:50;:::i;:::-;7170:60;;7125:115;6779:468;;;;;:::o;7253:474::-;7321:6;7329;7378:2;7366:9;7357:7;7353:23;7349:32;7346:119;;;7384:79;;:::i;:::-;7346:119;7504:1;7529:53;7574:7;7565:6;7554:9;7550:22;7529:53;:::i;:::-;7519:63;;7475:117;7631:2;7657:53;7702:7;7693:6;7682:9;7678:22;7657:53;:::i;:::-;7647:63;;7602:118;7253:474;;;;;:::o;7733:180::-;7781:77;7778:1;7771:88;7878:4;7875:1;7868:15;7902:4;7899:1;7892:15;7919:320;7963:6;8000:1;7994:4;7990:12;7980:22;;8047:1;8041:4;8037:12;8068:18;8058:81;;8124:4;8116:6;8112:17;8102:27;;8058:81;8186:2;8178:6;8175:14;8155:18;8152:38;8149:84;;8205:18;;:::i;:::-;8149:84;7970:269;7919:320;;;:::o;8245:180::-;8293:77;8290:1;8283:88;8390:4;8387:1;8380:15;8414:4;8411:1;8404:15;8431:191;8471:3;8490:20;8508:1;8490:20;:::i;:::-;8485:25;;8524:20;8542:1;8524:20;:::i;:::-;8519:25;;8567:1;8564;8560:9;8553:16;;8588:3;8585:1;8582:10;8579:36;;;8595:18;;:::i;:::-;8579:36;8431:191;;;;:::o;8628:179::-;8768:31;8764:1;8756:6;8752:14;8745:55;8628:179;:::o;8813:366::-;8955:3;8976:67;9040:2;9035:3;8976:67;:::i;:::-;8969:74;;9052:93;9141:3;9052:93;:::i;:::-;9170:2;9165:3;9161:12;9154:19;;8813:366;;;:::o;9185:419::-;9351:4;9389:2;9378:9;9374:18;9366:26;;9438:9;9432:4;9428:20;9424:1;9413:9;9409:17;9402:47;9466:131;9592:4;9466:131;:::i;:::-;9458:139;;9185:419;;;:::o;9610:299::-;9750:34;9746:1;9738:6;9734:14;9727:58;9819:34;9814:2;9806:6;9802:15;9795:59;9888:13;9883:2;9875:6;9871:15;9864:38;9610:299;:::o;9915:366::-;10057:3;10078:67;10142:2;10137:3;10078:67;:::i;:::-;10071:74;;10154:93;10243:3;10154:93;:::i;:::-;10272:2;10267:3;10263:12;10256:19;;9915:366;;;:::o;10287:419::-;10453:4;10491:2;10480:9;10476:18;10468:26;;10540:9;10534:4;10530:20;10526:1;10515:9;10511:17;10504:47;10568:131;10694:4;10568:131;:::i;:::-;10560:139;;10287:419;;;:::o;10712:230::-;10852:34;10848:1;10840:6;10836:14;10829:58;10921:13;10916:2;10908:6;10904:15;10897:38;10712:230;:::o;10948:366::-;11090:3;11111:67;11175:2;11170:3;11111:67;:::i;:::-;11104:74;;11187:93;11276:3;11187:93;:::i;:::-;11305:2;11300:3;11296:12;11289:19;;10948:366;;;:::o;11320:419::-;11486:4;11524:2;11513:9;11509:18;11501:26;;11573:9;11567:4;11563:20;11559:1;11548:9;11544:17;11537:47;11601:131;11727:4;11601:131;:::i;:::-;11593:139;;11320:419;;;:::o;11745:231::-;11885:34;11881:1;11873:6;11869:14;11862:58;11954:14;11949:2;11941:6;11937:15;11930:39;11745:231;:::o;11982:366::-;12124:3;12145:67;12209:2;12204:3;12145:67;:::i;:::-;12138:74;;12221:93;12310:3;12221:93;:::i;:::-;12339:2;12334:3;12330:12;12323:19;;11982:366;;;:::o;12354:419::-;12520:4;12558:2;12547:9;12543:18;12535:26;;12607:9;12601:4;12597:20;12593:1;12582:9;12578:17;12571:47;12635:131;12761:4;12635:131;:::i;:::-;12627:139;;12354:419;;;:::o;12779:229::-;12919:34;12915:1;12907:6;12903:14;12896:58;12988:12;12983:2;12975:6;12971:15;12964:37;12779:229;:::o;13014:366::-;13156:3;13177:67;13241:2;13236:3;13177:67;:::i;:::-;13170:74;;13253:93;13342:3;13253:93;:::i;:::-;13371:2;13366:3;13362:12;13355:19;;13014:366;;;:::o;13386:419::-;13552:4;13590:2;13579:9;13575:18;13567:26;;13639:9;13633:4;13629:20;13625:1;13614:9;13610:17;13603:47;13667:131;13793:4;13667:131;:::i;:::-;13659:139;;13386:419;;;:::o;13811:227::-;13951:34;13947:1;13939:6;13935:14;13928:58;14020:10;14015:2;14007:6;14003:15;13996:35;13811:227;:::o;14044:366::-;14186:3;14207:67;14271:2;14266:3;14207:67;:::i;:::-;14200:74;;14283:93;14372:3;14283:93;:::i;:::-;14401:2;14396:3;14392:12;14385:19;;14044:366;;;:::o;14416:419::-;14582:4;14620:2;14609:9;14605:18;14597:26;;14669:9;14663:4;14659:20;14655:1;14644:9;14640:17;14633:47;14697:131;14823:4;14697:131;:::i;:::-;14689:139;;14416:419;;;:::o;14841:179::-;14981:31;14977:1;14969:6;14965:14;14958:55;14841:179;:::o;15026:366::-;15168:3;15189:67;15253:2;15248:3;15189:67;:::i;:::-;15182:74;;15265:93;15354:3;15265:93;:::i;:::-;15383:2;15378:3;15374:12;15367:19;;15026:366;;;:::o;15398:419::-;15564:4;15602:2;15591:9;15587:18;15579:26;;15651:9;15645:4;15641:20;15637:1;15626:9;15622:17;15615:47;15679:131;15805:4;15679:131;:::i;:::-;15671:139;;15398:419;;;:::o;15823:230::-;15963:34;15959:1;15951:6;15947:14;15940:58;16032:13;16027:2;16019:6;16015:15;16008:38;15823:230;:::o;16059:366::-;16201:3;16222:67;16286:2;16281:3;16222:67;:::i;:::-;16215:74;;16298:93;16387:3;16298:93;:::i;:::-;16416:2;16411:3;16407:12;16400:19;;16059:366;;;:::o;16431:419::-;16597:4;16635:2;16624:9;16620:18;16612:26;;16684:9;16678:4;16674:20;16670:1;16659:9;16655:17;16648:47;16712:131;16838:4;16712:131;:::i;:::-;16704:139;;16431:419;;;:::o;16856:222::-;16996:34;16992:1;16984:6;16980:14;16973:58;17065:5;17060:2;17052:6;17048:15;17041:30;16856:222;:::o;17084:366::-;17226:3;17247:67;17311:2;17306:3;17247:67;:::i;:::-;17240:74;;17323:93;17412:3;17323:93;:::i;:::-;17441:2;17436:3;17432:12;17425:19;;17084:366;;;:::o;17456:419::-;17622:4;17660:2;17649:9;17645:18;17637:26;;17709:9;17703:4;17699:20;17695:1;17684:9;17680:17;17673:47;17737:131;17863:4;17737:131;:::i;:::-;17729:139;;17456:419;;;:::o;17881:174::-;18021:26;18017:1;18009:6;18005:14;17998:50;17881:174;:::o;18061:366::-;18203:3;18224:67;18288:2;18283:3;18224:67;:::i;:::-;18217:74;;18300:93;18389:3;18300:93;:::i;:::-;18418:2;18413:3;18409:12;18402:19;;18061:366;;;:::o;18433:419::-;18599:4;18637:2;18626:9;18622:18;18614:26;;18686:9;18680:4;18676:20;18672:1;18661:9;18657:17;18650:47;18714:131;18840:4;18714:131;:::i;:::-;18706:139;;18433:419;;;:::o;18858:410::-;18898:7;18921:20;18939:1;18921:20;:::i;:::-;18916:25;;18955:20;18973:1;18955:20;:::i;:::-;18950:25;;19010:1;19007;19003:9;19032:30;19050:11;19032:30;:::i;:::-;19021:41;;19211:1;19202:7;19198:15;19195:1;19192:22;19172:1;19165:9;19145:83;19122:139;;19241:18;;:::i;:::-;19122:139;18906:362;18858:410;;;;:::o;19274:180::-;19322:77;19319:1;19312:88;19419:4;19416:1;19409:15;19443:4;19440:1;19433:15;19460:185;19500:1;19517:20;19535:1;19517:20;:::i;:::-;19512:25;;19551:20;19569:1;19551:20;:::i;:::-;19546:25;;19590:1;19580:35;;19595:18;;:::i;:::-;19580:35;19637:1;19634;19630:9;19625:14;;19460:185;;;;:::o;19651:194::-;19691:4;19711:20;19729:1;19711:20;:::i;:::-;19706:25;;19745:20;19763:1;19745:20;:::i;:::-;19740:25;;19789:1;19786;19782:9;19774:17;;19813:1;19807:4;19804:11;19801:37;;;19818:18;;:::i;:::-;19801:37;19651:194;;;;:::o;19851:225::-;19991:34;19987:1;19979:6;19975:14;19968:58;20060:8;20055:2;20047:6;20043:15;20036:33;19851:225;:::o;20082:366::-;20224:3;20245:67;20309:2;20304:3;20245:67;:::i;:::-;20238:74;;20321:93;20410:3;20321:93;:::i;:::-;20439:2;20434:3;20430:12;20423:19;;20082:366;;;:::o;20454:419::-;20620:4;20658:2;20647:9;20643:18;20635:26;;20707:9;20701:4;20697:20;20693:1;20682:9;20678:17;20671:47;20735:131;20861:4;20735:131;:::i;:::-;20727:139;;20454:419;;;:::o;20879:230::-;21019:34;21015:1;21007:6;21003:14;20996:58;21088:13;21083:2;21075:6;21071:15;21064:38;20879:230;:::o;21115:366::-;21257:3;21278:67;21342:2;21337:3;21278:67;:::i;:::-;21271:74;;21354:93;21443:3;21354:93;:::i;:::-;21472:2;21467:3;21463:12;21456:19;;21115:366;;;:::o;21487:419::-;21653:4;21691:2;21680:9;21676:18;21668:26;;21740:9;21734:4;21730:20;21726:1;21715:9;21711:17;21704:47;21768:131;21894:4;21768:131;:::i;:::-;21760:139;;21487:419;;;:::o;21912:228::-;22052:34;22048:1;22040:6;22036:14;22029:58;22121:11;22116:2;22108:6;22104:15;22097:36;21912:228;:::o;22146:366::-;22288:3;22309:67;22373:2;22368:3;22309:67;:::i;:::-;22302:74;;22385:93;22474:3;22385:93;:::i;:::-;22503:2;22498:3;22494:12;22487:19;;22146:366;;;:::o;22518:419::-;22684:4;22722:2;22711:9;22707:18;22699:26;;22771:9;22765:4;22761:20;22757:1;22746:9;22742:17;22735:47;22799:131;22925:4;22799:131;:::i;:::-;22791:139;;22518:419;;;:::o;22943:231::-;23083:34;23079:1;23071:6;23067:14;23060:58;23152:14;23147:2;23139:6;23135:15;23128:39;22943:231;:::o;23180:366::-;23322:3;23343:67;23407:2;23402:3;23343:67;:::i;:::-;23336:74;;23419:93;23508:3;23419:93;:::i;:::-;23537:2;23532:3;23528:12;23521:19;;23180:366;;;:::o;23552:419::-;23718:4;23756:2;23745:9;23741:18;23733:26;;23805:9;23799:4;23795:20;23791:1;23780:9;23776:17;23769:47;23833:131;23959:4;23833:131;:::i;:::-;23825:139;;23552:419;;;:::o;23977:442::-;24126:4;24164:2;24153:9;24149:18;24141:26;;24177:71;24245:1;24234:9;24230:17;24221:6;24177:71;:::i;:::-;24258:72;24326:2;24315:9;24311:18;24302:6;24258:72;:::i;:::-;24340;24408:2;24397:9;24393:18;24384:6;24340:72;:::i;:::-;23977:442;;;;;;:::o;24425:147::-;24526:11;24563:3;24548:18;;24425:147;;;;:::o;24578:114::-;;:::o;24698:398::-;24857:3;24878:83;24959:1;24954:3;24878:83;:::i;:::-;24871:90;;24970:93;25059:3;24970:93;:::i;:::-;25088:1;25083:3;25079:11;25072:18;;24698:398;;;:::o;25102:379::-;25286:3;25308:147;25451:3;25308:147;:::i;:::-;25301:154;;25472:3;25465:10;;25102:379;;;:::o;25487:180::-;25535:77;25532:1;25525:88;25632:4;25629:1;25622:15;25656:4;25653:1;25646:15;25673:180;25721:77;25718:1;25711:88;25818:4;25815:1;25808:15;25842:4;25839:1;25832:15;25859:143;25916:5;25947:6;25941:13;25932:22;;25963:33;25990:5;25963:33;:::i;:::-;25859:143;;;;:::o;26008:351::-;26078:6;26127:2;26115:9;26106:7;26102:23;26098:32;26095:119;;;26133:79;;:::i;:::-;26095:119;26253:1;26278:64;26334:7;26325:6;26314:9;26310:22;26278:64;:::i;:::-;26268:74;;26224:128;26008:351;;;;:::o;26365:85::-;26410:7;26439:5;26428:16;;26365:85;;;:::o;26456:158::-;26514:9;26547:61;26565:42;26574:32;26600:5;26574:32;:::i;:::-;26565:42;:::i;:::-;26547:61;:::i;:::-;26534:74;;26456:158;;;:::o;26620:147::-;26715:45;26754:5;26715:45;:::i;:::-;26710:3;26703:58;26620:147;;:::o;26773:114::-;26840:6;26874:5;26868:12;26858:22;;26773:114;;;:::o;26893:184::-;26992:11;27026:6;27021:3;27014:19;27066:4;27061:3;27057:14;27042:29;;26893:184;;;;:::o;27083:132::-;27150:4;27173:3;27165:11;;27203:4;27198:3;27194:14;27186:22;;27083:132;;;:::o;27221:108::-;27298:24;27316:5;27298:24;:::i;:::-;27293:3;27286:37;27221:108;;:::o;27335:179::-;27404:10;27425:46;27467:3;27459:6;27425:46;:::i;:::-;27503:4;27498:3;27494:14;27480:28;;27335:179;;;;:::o;27520:113::-;27590:4;27622;27617:3;27613:14;27605:22;;27520:113;;;:::o;27669:732::-;27788:3;27817:54;27865:5;27817:54;:::i;:::-;27887:86;27966:6;27961:3;27887:86;:::i;:::-;27880:93;;27997:56;28047:5;27997:56;:::i;:::-;28076:7;28107:1;28092:284;28117:6;28114:1;28111:13;28092:284;;;28193:6;28187:13;28220:63;28279:3;28264:13;28220:63;:::i;:::-;28213:70;;28306:60;28359:6;28306:60;:::i;:::-;28296:70;;28152:224;28139:1;28136;28132:9;28127:14;;28092:284;;;28096:14;28392:3;28385:10;;27793:608;;;27669:732;;;;:::o;28407:831::-;28670:4;28708:3;28697:9;28693:19;28685:27;;28722:71;28790:1;28779:9;28775:17;28766:6;28722:71;:::i;:::-;28803:80;28879:2;28868:9;28864:18;28855:6;28803:80;:::i;:::-;28930:9;28924:4;28920:20;28915:2;28904:9;28900:18;28893:48;28958:108;29061:4;29052:6;28958:108;:::i;:::-;28950:116;;29076:72;29144:2;29133:9;29129:18;29120:6;29076:72;:::i;:::-;29158:73;29226:3;29215:9;29211:19;29202:6;29158:73;:::i;:::-;28407:831;;;;;;;;:::o;29244:807::-;29493:4;29531:3;29520:9;29516:19;29508:27;;29545:71;29613:1;29602:9;29598:17;29589:6;29545:71;:::i;:::-;29626:72;29694:2;29683:9;29679:18;29670:6;29626:72;:::i;:::-;29708:80;29784:2;29773:9;29769:18;29760:6;29708:80;:::i;:::-;29798;29874:2;29863:9;29859:18;29850:6;29798:80;:::i;:::-;29888:73;29956:3;29945:9;29941:19;29932:6;29888:73;:::i;:::-;29971;30039:3;30028:9;30024:19;30015:6;29971:73;:::i;:::-;29244:807;;;;;;;;;:::o;30057:143::-;30114:5;30145:6;30139:13;30130:22;;30161:33;30188:5;30161:33;:::i;:::-;30057:143;;;;:::o;30206:663::-;30294:6;30302;30310;30359:2;30347:9;30338:7;30334:23;30330:32;30327:119;;;30365:79;;:::i;:::-;30327:119;30485:1;30510:64;30566:7;30557:6;30546:9;30542:22;30510:64;:::i;:::-;30500:74;;30456:128;30623:2;30649:64;30705:7;30696:6;30685:9;30681:22;30649:64;:::i;:::-;30639:74;;30594:129;30762:2;30788:64;30844:7;30835:6;30824:9;30820:22;30788:64;:::i;:::-;30778:74;;30733:129;30206:663;;;;;:::o

Swarm Source

ipfs://61ae3a222438e8aabc855d87e9d15bac504f5563fd91e1fbbcd0ac99af093a3a

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.