ETH Price: $3,330.05 (+2.00%)
Gas: 5 Gwei

Contract

0xA3066314f5993506307BADBecCDacbf1d7f356D5
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve165002312023-01-27 19:27:11548 days ago1674847631IN
0xA3066314...1d7f356D5
0 ETH0.0014155329.99338507
Approve164879482023-01-26 2:16:23550 days ago1674699383IN
0xA3066314...1d7f356D5
0 ETH0.0004028416.13235255
Approve155873662022-09-22 7:23:35676 days ago1663831415IN
0xA3066314...1d7f356D5
0 ETH0.000255735.41188277
Approve155792762022-09-21 3:52:23677 days ago1663732343IN
0xA3066314...1d7f356D5
0 ETH0.000184487.38793854
Approve155775932022-09-20 22:13:47677 days ago1663712027IN
0xA3066314...1d7f356D5
0 ETH0.0004890910.35006396
Approve155764872022-09-20 18:30:59677 days ago1663698659IN
0xA3066314...1d7f356D5
0 ETH0.000646413.67916097
Approve155732062022-09-20 7:28:35678 days ago1663658915IN
0xA3066314...1d7f356D5
0 ETH0.0004767610.08928166
Approve155703832022-09-19 21:59:23678 days ago1663624763IN
0xA3066314...1d7f356D5
0 ETH0.000434919.20350052
Approve155703732022-09-19 21:57:23678 days ago1663624643IN
0xA3066314...1d7f356D5
0 ETH0.00043249.15039263
Approve155690672022-09-19 17:33:35678 days ago1663608815IN
0xA3066314...1d7f356D5
0 ETH0.0012827427.14523825
Approve155685982022-09-19 15:57:59678 days ago1663603079IN
0xA3066314...1d7f356D5
0 ETH0.0011944725.2773124
Approve155677452022-09-19 13:05:23679 days ago1663592723IN
0xA3066314...1d7f356D5
0 ETH0.0008787518.59609767
Approve155665022022-09-19 8:53:59679 days ago1663577639IN
0xA3066314...1d7f356D5
0 ETH0.000230344.87441435
Approve155659352022-09-19 6:59:35679 days ago1663570775IN
0xA3066314...1d7f356D5
0 ETH0.000253435.36308523
Approve155650352022-09-19 3:57:59679 days ago1663559879IN
0xA3066314...1d7f356D5
0 ETH0.000350827.42404153
Approve155647892022-09-19 3:08:35679 days ago1663556915IN
0xA3066314...1d7f356D5
0 ETH0.000442299.35970312
Approve155645012022-09-19 2:10:23679 days ago1663553423IN
0xA3066314...1d7f356D5
0 ETH0.000283536
Approve155620992022-09-18 18:04:59679 days ago1663524299IN
0xA3066314...1d7f356D5
0 ETH0.0006368813.47766075
Approve155615892022-09-18 16:22:23679 days ago1663518143IN
0xA3066314...1d7f356D5
0 ETH0.001062722.48877955
Transfer155614682022-09-18 15:57:59679 days ago1663516679IN
0xA3066314...1d7f356D5
0 ETH0.0006397910.33378747
Approve155610152022-09-18 14:26:11680 days ago1663511171IN
0xA3066314...1d7f356D5
0 ETH0.000341227.22102477
Approve155607772022-09-18 13:37:35680 days ago1663508255IN
0xA3066314...1d7f356D5
0 ETH0.000199274.2170818
Approve155606612022-09-18 13:14:23680 days ago1663506863IN
0xA3066314...1d7f356D5
0 ETH0.000247075.22844292
Approve155603922022-09-18 12:20:11680 days ago1663503611IN
0xA3066314...1d7f356D5
0 ETH0.000318926.74904258
Approve155598942022-09-18 10:39:11680 days ago1663497551IN
0xA3066314...1d7f356D5
0 ETH0.000189024
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:
JadeDragon

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

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

The Jade Dragon has combined its mystical powers with the legendary Wu Kong Monkey King to fight against the evil forces in crypto and slay evil beings that create chaos in the cryptoverse. 

🐉 TOKENOMICS
Total supply: 1 Million
Taxes: 2/4
Max Buy: 1%
Max Wallet: 2%

Telegram: https://t.me/jadedragoneth
Twitter: https://twitter.com/Jadedragoneth
Medium: https://medium.com/@myrene/jade-dragon-24e63bfac483
Website: https://jadedragon.finance/

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

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

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


abstract contract Ownable is Context {
    address private _owner;

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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


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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    bool private swapping;

    address public devWallet;

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

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

    uint256 public buyTotalFees;
    uint256 public buyDevFee;
    uint256 public buyLiquidityFee;

    uint256 public sellTotalFees;
    uint256 public sellDevFee;
    uint256 public sellLiquidityFee;

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

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


    event ExcludeFromFees(address indexed account, bool isExcluded);

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

    constructor() ERC20("Jade Dragon", "$JADE") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);

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

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


        uint256 _buyDevFee = 8;
        uint256 _buyLiquidityFee = 0;

        uint256 _sellDevFee = 8;
        uint256 _sellLiquidityFee = 0;

        uint256 totalSupply = 10_000_000 * 1e18;

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

        buyDevFee = _buyDevFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyTotalFees = buyDevFee + buyLiquidityFee;

        sellDevFee = _sellDevFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellTotalFees = sellDevFee + sellLiquidityFee;

        devWallet = address(0xd9c74558a053f5C3cb82f61ddD46a3F83BC3cE74); // $Jade Wallet

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

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

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

    receive() external payable {}

    // once enabled, can never be turned off
    function enableTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
    }

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

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

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

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

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

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

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

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

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

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


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

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

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

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

                // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.
                //when buy
                if (
                    from == uniswapV2Pair &&
                    !_isExcludedMaxTransactionAmount[to]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Buy transfer amount exceeds the maxTransactionAmount."
                    );
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
                else if (!_isExcludedMaxTransactionAmount[to]) {
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

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

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

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

            amount -= fees;
        }

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

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

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

        // make the swap
        uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of USDC
            path,
            devWallet,
            block.timestamp
        );
    }

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        if (contractBalance == 0) {
            return;
        }

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

        swapTokensForUSDC(contractBalance);
    }

}

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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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":"devWalletUpdated","type":"event"},{"inputs":[],"name":"USDC","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":[],"name":"devWallet","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":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_devFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newDevWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_devFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c060405273a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600b60006101000a81548160ff0219169083151502179055506000600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff021916908315150217905550348015620000b757600080fd5b506040518060400160405280600b81526020017f4a61646520447261676f6e0000000000000000000000000000000000000000008152506040518060400160405280600581526020017f244a414445000000000000000000000000000000000000000000000000000000815250816003908162000135919062000c1b565b50806004908162000147919062000c1b565b5050506200016a6200015e6200050360201b60201c565b6200050b60201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d905062000196816001620005d160201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000216573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200023c919062000d6c565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518363ffffffff1660e01b81526004016200029a92919062000daf565b6020604051808303816000875af1158015620002ba573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002e0919062000d6c565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200032860a0516001620005d160201b60201c565b600060089050600080600890506000806a084595161401484a0000009050606460018262000357919062000e0b565b62000363919062000e9b565b60088190555060646002826200037a919062000e0b565b62000386919062000e9b565b600a819055506127106005826200039e919062000e0b565b620003aa919062000e9b565b60098190555084600d8190555083600e81905550600e54600d54620003d0919062000ed3565b600c819055508260108190555081601181905550601154601054620003f6919062000ed3565b600f8190555073d9c74558a053f5c3cb82f61ddd46a3f83bc3ce74600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200047362000465620006bb60201b60201c565b6001620006e560201b60201c565b62000486306001620006e560201b60201c565b6200049b61dead6001620006e560201b60201c565b620004bd620004af620006bb60201b60201c565b6001620005d160201b60201c565b620004d0306001620005d160201b60201c565b620004e561dead6001620005d160201b60201c565b620004f733826200081f60201b60201c565b5050505050506200108d565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620005e16200050360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000607620006bb60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000660576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006579062000f91565b60405180910390fd5b80601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620006f56200050360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200071b620006bb60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000774576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200076b9062000f91565b60405180910390fd5b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000813919062000fd0565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000891576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000888906200103d565b60405180910390fd5b620008a5600083836200099760201b60201c565b8060026000828254620008b9919062000ed3565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000910919062000ed3565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000977919062001070565b60405180910390a362000993600083836200099c60201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000a2357607f821691505b60208210810362000a395762000a38620009db565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000aa37fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000a64565b62000aaf868362000a64565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000afc62000af662000af08462000ac7565b62000ad1565b62000ac7565b9050919050565b6000819050919050565b62000b188362000adb565b62000b3062000b278262000b03565b84845462000a71565b825550505050565b600090565b62000b4762000b38565b62000b5481848462000b0d565b505050565b5b8181101562000b7c5762000b7060008262000b3d565b60018101905062000b5a565b5050565b601f82111562000bcb5762000b958162000a3f565b62000ba08462000a54565b8101602085101562000bb0578190505b62000bc862000bbf8562000a54565b83018262000b59565b50505b505050565b600082821c905092915050565b600062000bf06000198460080262000bd0565b1980831691505092915050565b600062000c0b838362000bdd565b9150826002028217905092915050565b62000c2682620009a1565b67ffffffffffffffff81111562000c425762000c41620009ac565b5b62000c4e825462000a0a565b62000c5b82828562000b80565b600060209050601f83116001811462000c93576000841562000c7e578287015190505b62000c8a858262000bfd565b86555062000cfa565b601f19841662000ca38662000a3f565b60005b8281101562000ccd5784890151825560018201915060208501945060208101905062000ca6565b8683101562000ced578489015162000ce9601f89168262000bdd565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000d348262000d07565b9050919050565b62000d468162000d27565b811462000d5257600080fd5b50565b60008151905062000d668162000d3b565b92915050565b60006020828403121562000d855762000d8462000d02565b5b600062000d958482850162000d55565b91505092915050565b62000da98162000d27565b82525050565b600060408201905062000dc6600083018562000d9e565b62000dd5602083018462000d9e565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000e188262000ac7565b915062000e258362000ac7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000e615762000e6062000ddc565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000ea88262000ac7565b915062000eb58362000ac7565b92508262000ec85762000ec762000e6c565b5b828204905092915050565b600062000ee08262000ac7565b915062000eed8362000ac7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000f255762000f2462000ddc565b5b828201905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000f7960208362000f30565b915062000f868262000f41565b602082019050919050565b6000602082019050818103600083015262000fac8162000f6a565b9050919050565b60008115159050919050565b62000fca8162000fb3565b82525050565b600060208201905062000fe7600083018462000fbf565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062001025601f8362000f30565b9150620010328262000fed565b602082019050919050565b60006020820190508181036000830152620010588162001016565b9050919050565b6200106a8162000ac7565b82525050565b60006020820190506200108760008301846200105f565b92915050565b60805160a051613c58620010e460003960008181610f0101528181611f6e015281816121b7015281816123c20152818161248d0152612577015260008181610b8101528181612aa20152612ac90152613c586000f3fe6080604052600436106102555760003560e01c806389a3027111610139578063c0246668116100b6578063dd62ed3e1161007a578063dd62ed3e146108b3578063e2f45605146108f0578063f11a24d31461091b578063f2fde38b14610946578063f63743421461096f578063f8b45b051461099a5761025c565b8063c0246668146107ce578063c18bc195146107f7578063c8c8ebe414610820578063d257b34f1461084b578063d85ba063146108885761025c565b806395d89b41116100fd57806395d89b41146106e55780639c3b4fdc14610710578063a0d82dc51461073b578063a9059cbb14610766578063bbc0c742146107a35761025c565b806389a30271146106245780638a8c523c1461064f5780638da5cb5b146106665780638ea5220f14610691578063924de9b7146106bc5761025c565b8063313ce567116101d25780636a486a8e116101965780636a486a8e146105265780636ddd17131461055157806370a082311461057c578063715018a6146105b9578063751039fc146105d05780637571336a146105fb5761025c565b8063313ce5671461043f57806349bd5a5e1461046a5780634a62bb65146104955780634fbee193146104c057806366ca9b83146104fd5761025c565b806318160ddd1161021957806318160ddd1461035a5780631816467f14610385578063203e727e146103ae57806323b872dd146103d757806327c8f835146104145761025c565b806302dbd8f81461026157806306fdde031461028a578063095ea7b3146102b557806310d5de53146102f25780631694505e1461032f5761025c565b3661025c57005b600080fd5b34801561026d57600080fd5b5061028860048036038101906102839190612bbc565b6109c5565b005b34801561029657600080fd5b5061029f610aaf565b6040516102ac9190612c95565b60405180910390f35b3480156102c157600080fd5b506102dc60048036038101906102d79190612d15565b610b41565b6040516102e99190612d70565b60405180910390f35b3480156102fe57600080fd5b5061031960048036038101906103149190612d8b565b610b5f565b6040516103269190612d70565b60405180910390f35b34801561033b57600080fd5b50610344610b7f565b6040516103519190612e17565b60405180910390f35b34801561036657600080fd5b5061036f610ba3565b60405161037c9190612e41565b60405180910390f35b34801561039157600080fd5b506103ac60048036038101906103a79190612d8b565b610bad565b005b3480156103ba57600080fd5b506103d560048036038101906103d09190612e5c565b610ce9565b005b3480156103e357600080fd5b506103fe60048036038101906103f99190612e89565b610df8565b60405161040b9190612d70565b60405180910390f35b34801561042057600080fd5b50610429610ef0565b6040516104369190612eeb565b60405180910390f35b34801561044b57600080fd5b50610454610ef6565b6040516104619190612f22565b60405180910390f35b34801561047657600080fd5b5061047f610eff565b60405161048c9190612eeb565b60405180910390f35b3480156104a157600080fd5b506104aa610f23565b6040516104b79190612d70565b60405180910390f35b3480156104cc57600080fd5b506104e760048036038101906104e29190612d8b565b610f36565b6040516104f49190612d70565b60405180910390f35b34801561050957600080fd5b50610524600480360381019061051f9190612bbc565b610f8c565b005b34801561053257600080fd5b5061053b611076565b6040516105489190612e41565b60405180910390f35b34801561055d57600080fd5b5061056661107c565b6040516105739190612d70565b60405180910390f35b34801561058857600080fd5b506105a3600480360381019061059e9190612d8b565b61108f565b6040516105b09190612e41565b60405180910390f35b3480156105c557600080fd5b506105ce6110d7565b005b3480156105dc57600080fd5b506105e561115f565b6040516105f29190612d70565b60405180910390f35b34801561060757600080fd5b50610622600480360381019061061d9190612f69565b6111ff565b005b34801561063057600080fd5b506106396112d6565b6040516106469190612eeb565b60405180910390f35b34801561065b57600080fd5b506106646112fc565b005b34801561067257600080fd5b5061067b6113b0565b6040516106889190612eeb565b60405180910390f35b34801561069d57600080fd5b506106a66113da565b6040516106b39190612eeb565b60405180910390f35b3480156106c857600080fd5b506106e360048036038101906106de9190612fa9565b611400565b005b3480156106f157600080fd5b506106fa611499565b6040516107079190612c95565b60405180910390f35b34801561071c57600080fd5b5061072561152b565b6040516107329190612e41565b60405180910390f35b34801561074757600080fd5b50610750611531565b60405161075d9190612e41565b60405180910390f35b34801561077257600080fd5b5061078d60048036038101906107889190612d15565b611537565b60405161079a9190612d70565b60405180910390f35b3480156107af57600080fd5b506107b8611555565b6040516107c59190612d70565b60405180910390f35b3480156107da57600080fd5b506107f560048036038101906107f09190612f69565b611568565b005b34801561080357600080fd5b5061081e60048036038101906108199190612e5c565b61168d565b005b34801561082c57600080fd5b5061083561179c565b6040516108429190612e41565b60405180910390f35b34801561085757600080fd5b50610872600480360381019061086d9190612e5c565b6117a2565b60405161087f9190612d70565b60405180910390f35b34801561089457600080fd5b5061089d6118f7565b6040516108aa9190612e41565b60405180910390f35b3480156108bf57600080fd5b506108da60048036038101906108d59190612fd6565b6118fd565b6040516108e79190612e41565b60405180910390f35b3480156108fc57600080fd5b50610905611984565b6040516109129190612e41565b60405180910390f35b34801561092757600080fd5b5061093061198a565b60405161093d9190612e41565b60405180910390f35b34801561095257600080fd5b5061096d60048036038101906109689190612d8b565b611990565b005b34801561097b57600080fd5b50610984611a87565b6040516109919190612e41565b60405180910390f35b3480156109a657600080fd5b506109af611a8d565b6040516109bc9190612e41565b60405180910390f35b6109cd611a93565b73ffffffffffffffffffffffffffffffffffffffff166109eb6113b0565b73ffffffffffffffffffffffffffffffffffffffff1614610a41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3890613062565b60405180910390fd5b8160108190555080601181905550601154601054610a5f91906130b1565b600f81905550600a600f541115610aab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa290613153565b60405180910390fd5b5050565b606060038054610abe906131a2565b80601f0160208091040260200160405190810160405280929190818152602001828054610aea906131a2565b8015610b375780601f10610b0c57610100808354040283529160200191610b37565b820191906000526020600020905b815481529060010190602001808311610b1a57829003601f168201915b5050505050905090565b6000610b55610b4e611a93565b8484611a9b565b6001905092915050565b60136020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610bb5611a93565b73ffffffffffffffffffffffffffffffffffffffff16610bd36113b0565b73ffffffffffffffffffffffffffffffffffffffff1614610c29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2090613062565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610cf1611a93565b73ffffffffffffffffffffffffffffffffffffffff16610d0f6113b0565b73ffffffffffffffffffffffffffffffffffffffff1614610d65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5c90613062565b60405180910390fd5b670de0b6b3a76400006103e86001610d7b610ba3565b610d8591906131d3565b610d8f919061325c565b610d99919061325c565b811015610ddb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd2906132ff565b60405180910390fd5b670de0b6b3a764000081610def91906131d3565b60088190555050565b6000610e05848484611c64565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610e50611a93565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610ed0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec790613391565b60405180910390fd5b610ee485610edc611a93565b858403611a9b565b60019150509392505050565b61dead81565b60006012905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b600b60009054906101000a900460ff1681565b6000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610f94611a93565b73ffffffffffffffffffffffffffffffffffffffff16610fb26113b0565b73ffffffffffffffffffffffffffffffffffffffff1614611008576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fff90613062565b60405180910390fd5b81600d8190555080600e81905550600e54600d5461102691906130b1565b600c81905550600a600c541115611072576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106990613153565b60405180910390fd5b5050565b600f5481565b600b60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6110df611a93565b73ffffffffffffffffffffffffffffffffffffffff166110fd6113b0565b73ffffffffffffffffffffffffffffffffffffffff1614611153576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114a90613062565b60405180910390fd5b61115d60006125c3565b565b6000611169611a93565b73ffffffffffffffffffffffffffffffffffffffff166111876113b0565b73ffffffffffffffffffffffffffffffffffffffff16146111dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d490613062565b60405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055506001905090565b611207611a93565b73ffffffffffffffffffffffffffffffffffffffff166112256113b0565b73ffffffffffffffffffffffffffffffffffffffff161461127b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127290613062565b60405180910390fd5b80601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611304611a93565b73ffffffffffffffffffffffffffffffffffffffff166113226113b0565b73ffffffffffffffffffffffffffffffffffffffff1614611378576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136f90613062565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611408611a93565b73ffffffffffffffffffffffffffffffffffffffff166114266113b0565b73ffffffffffffffffffffffffffffffffffffffff161461147c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147390613062565b60405180910390fd5b80600b60026101000a81548160ff02191690831515021790555050565b6060600480546114a8906131a2565b80601f01602080910402602001604051908101604052809291908181526020018280546114d4906131a2565b80156115215780601f106114f657610100808354040283529160200191611521565b820191906000526020600020905b81548152906001019060200180831161150457829003601f168201915b5050505050905090565b600d5481565b60105481565b600061154b611544611a93565b8484611c64565b6001905092915050565b600b60019054906101000a900460ff1681565b611570611a93565b73ffffffffffffffffffffffffffffffffffffffff1661158e6113b0565b73ffffffffffffffffffffffffffffffffffffffff16146115e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115db90613062565b60405180910390fd5b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516116819190612d70565b60405180910390a25050565b611695611a93565b73ffffffffffffffffffffffffffffffffffffffff166116b36113b0565b73ffffffffffffffffffffffffffffffffffffffff1614611709576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170090613062565b60405180910390fd5b670de0b6b3a76400006103e8600561171f610ba3565b61172991906131d3565b611733919061325c565b61173d919061325c565b81101561177f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177690613423565b60405180910390fd5b670de0b6b3a76400008161179391906131d3565b600a8190555050565b60085481565b60006117ac611a93565b73ffffffffffffffffffffffffffffffffffffffff166117ca6113b0565b73ffffffffffffffffffffffffffffffffffffffff1614611820576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181790613062565b60405180910390fd5b620186a0600161182e610ba3565b61183891906131d3565b611842919061325c565b821015611884576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187b906134b5565b60405180910390fd5b6103e86005611891610ba3565b61189b91906131d3565b6118a5919061325c565b8211156118e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118de90613547565b60405180910390fd5b8160098190555060019050919050565b600c5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b600e5481565b611998611a93565b73ffffffffffffffffffffffffffffffffffffffff166119b66113b0565b73ffffffffffffffffffffffffffffffffffffffff1614611a0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0390613062565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611a7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a72906135d9565b60405180910390fd5b611a84816125c3565b50565b60115481565b600a5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611b0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b019061366b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b70906136fd565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611c579190612e41565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611cd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cca9061378f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611d42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3990613821565b60405180910390fd5b60008103611d5b57611d5683836000612689565b6125be565b600b60009054906101000a900460ff161561216557611d786113b0565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611de65750611db66113b0565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611e1f5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611e59575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611e725750600660149054906101000a900460ff16155b1561216457600b60019054906101000a900460ff16611f6c57601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611f2c5750601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611f6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f629061388d565b60405180910390fd5b5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480156120115750601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156120b85760085481111561205b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120529061391f565b60405180910390fd5b600a546120678361108f565b8261207291906130b1565b11156120b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120aa9061398b565b60405180910390fd5b612163565b601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661216257600a546121158361108f565b8261212091906130b1565b1115612161576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121589061398b565b60405180910390fd5b5b5b5b5b60006121703061108f565b9050600060095482101590508080156121955750600b60029054906101000a900460ff165b80156121ae5750600660149054906101000a900460ff16155b801561220557507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b801561225b5750601260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156122b15750601260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156122f5576001600660146101000a81548160ff0219169083151502179055506122d9612908565b6000600660146101000a81548160ff0219169083151502179055505b6000600660149054906101000a900460ff16159050601260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806123ab5750601260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156123b557600090505b600080600083156125ac577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff1614801561241d57506000600f54115b1561248b5761244a606461243c600f548a61295890919063ffffffff16565b61296e90919063ffffffff16565b9250600f546011548461245d91906131d3565b612467919061325c565b9150600f546010548461247a91906131d3565b612484919061325c565b9050612553565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff161480156124e857506000600c54115b15612552576125156064612507600c548a61295890919063ffffffff16565b61296e90919063ffffffff16565b9250600c54600e548461252891906131d3565b612532919061325c565b9150600c54600d548461254591906131d3565b61254f919061325c565b90505b5b600083111561256857612567893085612689565b5b600082111561259d5761259c307f000000000000000000000000000000000000000000000000000000000000000084612689565b5b82876125a991906139ab565b96505b6125b7898989612689565b5050505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036126f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ef9061378f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612767576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275e90613821565b60405180910390fd5b612772838383612984565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156127f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ef90613a51565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461288b91906130b1565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516128ef9190612e41565b60405180910390a3612902848484612989565b50505050565b60006129133061108f565b9050600081036129235750612956565b601460095461293291906131d3565b81111561294b57601460095461294891906131d3565b90505b6129548161298e565b505b565b6000818361296691906131d3565b905092915050565b6000818361297c919061325c565b905092915050565b505050565b505050565b6000600267ffffffffffffffff8111156129ab576129aa613a71565b5b6040519080825280602002602001820160405280156129d95781602001602082028036833780820191505090505b50905030816000815181106129f1576129f0613aa0565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681600181518110612a6257612a61613aa0565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612ac7307f000000000000000000000000000000000000000000000000000000000000000084611a9b565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16635c11d79583600084600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b8152600401612b4b959493929190613bc8565b600060405180830381600087803b158015612b6557600080fd5b505af1158015612b79573d6000803e3d6000fd5b505050505050565b600080fd5b6000819050919050565b612b9981612b86565b8114612ba457600080fd5b50565b600081359050612bb681612b90565b92915050565b60008060408385031215612bd357612bd2612b81565b5b6000612be185828601612ba7565b9250506020612bf285828601612ba7565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612c36578082015181840152602081019050612c1b565b83811115612c45576000848401525b50505050565b6000601f19601f8301169050919050565b6000612c6782612bfc565b612c718185612c07565b9350612c81818560208601612c18565b612c8a81612c4b565b840191505092915050565b60006020820190508181036000830152612caf8184612c5c565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612ce282612cb7565b9050919050565b612cf281612cd7565b8114612cfd57600080fd5b50565b600081359050612d0f81612ce9565b92915050565b60008060408385031215612d2c57612d2b612b81565b5b6000612d3a85828601612d00565b9250506020612d4b85828601612ba7565b9150509250929050565b60008115159050919050565b612d6a81612d55565b82525050565b6000602082019050612d856000830184612d61565b92915050565b600060208284031215612da157612da0612b81565b5b6000612daf84828501612d00565b91505092915050565b6000819050919050565b6000612ddd612dd8612dd384612cb7565b612db8565b612cb7565b9050919050565b6000612def82612dc2565b9050919050565b6000612e0182612de4565b9050919050565b612e1181612df6565b82525050565b6000602082019050612e2c6000830184612e08565b92915050565b612e3b81612b86565b82525050565b6000602082019050612e566000830184612e32565b92915050565b600060208284031215612e7257612e71612b81565b5b6000612e8084828501612ba7565b91505092915050565b600080600060608486031215612ea257612ea1612b81565b5b6000612eb086828701612d00565b9350506020612ec186828701612d00565b9250506040612ed286828701612ba7565b9150509250925092565b612ee581612cd7565b82525050565b6000602082019050612f006000830184612edc565b92915050565b600060ff82169050919050565b612f1c81612f06565b82525050565b6000602082019050612f376000830184612f13565b92915050565b612f4681612d55565b8114612f5157600080fd5b50565b600081359050612f6381612f3d565b92915050565b60008060408385031215612f8057612f7f612b81565b5b6000612f8e85828601612d00565b9250506020612f9f85828601612f54565b9150509250929050565b600060208284031215612fbf57612fbe612b81565b5b6000612fcd84828501612f54565b91505092915050565b60008060408385031215612fed57612fec612b81565b5b6000612ffb85828601612d00565b925050602061300c85828601612d00565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061304c602083612c07565b915061305782613016565b602082019050919050565b6000602082019050818103600083015261307b8161303f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006130bc82612b86565b91506130c783612b86565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156130fc576130fb613082565b5b828201905092915050565b7f4d757374206b656570206665657320617420313025206f72206c657373000000600082015250565b600061313d601d83612c07565b915061314882613107565b602082019050919050565b6000602082019050818103600083015261316c81613130565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806131ba57607f821691505b6020821081036131cd576131cc613173565b5b50919050565b60006131de82612b86565b91506131e983612b86565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561322257613221613082565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061326782612b86565b915061327283612b86565b9250826132825761328161322d565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b60006132e9602f83612c07565b91506132f48261328d565b604082019050919050565b60006020820190508181036000830152613318816132dc565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b600061337b602883612c07565b91506133868261331f565b604082019050919050565b600060208201905081810360008301526133aa8161336e565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b600061340d602483612c07565b9150613418826133b1565b604082019050919050565b6000602082019050818103600083015261343c81613400565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b600061349f603583612c07565b91506134aa82613443565b604082019050919050565b600060208201905081810360008301526134ce81613492565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000613531603483612c07565b915061353c826134d5565b604082019050919050565b6000602082019050818103600083015261356081613524565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006135c3602683612c07565b91506135ce82613567565b604082019050919050565b600060208201905081810360008301526135f2816135b6565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613655602483612c07565b9150613660826135f9565b604082019050919050565b6000602082019050818103600083015261368481613648565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006136e7602283612c07565b91506136f28261368b565b604082019050919050565b60006020820190508181036000830152613716816136da565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613779602583612c07565b91506137848261371d565b604082019050919050565b600060208201905081810360008301526137a88161376c565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061380b602383612c07565b9150613816826137af565b604082019050919050565b6000602082019050818103600083015261383a816137fe565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000613877601683612c07565b915061388282613841565b602082019050919050565b600060208201905081810360008301526138a68161386a565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000613909603583612c07565b9150613914826138ad565b604082019050919050565b60006020820190508181036000830152613938816138fc565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000613975601383612c07565b91506139808261393f565b602082019050919050565b600060208201905081810360008301526139a481613968565b9050919050565b60006139b682612b86565b91506139c183612b86565b9250828210156139d4576139d3613082565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613a3b602683612c07565b9150613a46826139df565b604082019050919050565b60006020820190508181036000830152613a6a81613a2e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b6000613af4613aef613aea84613acf565b612db8565b612b86565b9050919050565b613b0481613ad9565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613b3f81612cd7565b82525050565b6000613b518383613b36565b60208301905092915050565b6000602082019050919050565b6000613b7582613b0a565b613b7f8185613b15565b9350613b8a83613b26565b8060005b83811015613bbb578151613ba28882613b45565b9750613bad83613b5d565b925050600181019050613b8e565b5085935050505092915050565b600060a082019050613bdd6000830188612e32565b613bea6020830187613afb565b8181036040830152613bfc8186613b6a565b9050613c0b6060830185612edc565b613c186080830184612e32565b969550505050505056fea26469706673582212203670a7efc80cf8598f2107453235e2687ab0248fd28ec109246195182a3951fa64736f6c634300080f0033

Deployed Bytecode

0x6080604052600436106102555760003560e01c806389a3027111610139578063c0246668116100b6578063dd62ed3e1161007a578063dd62ed3e146108b3578063e2f45605146108f0578063f11a24d31461091b578063f2fde38b14610946578063f63743421461096f578063f8b45b051461099a5761025c565b8063c0246668146107ce578063c18bc195146107f7578063c8c8ebe414610820578063d257b34f1461084b578063d85ba063146108885761025c565b806395d89b41116100fd57806395d89b41146106e55780639c3b4fdc14610710578063a0d82dc51461073b578063a9059cbb14610766578063bbc0c742146107a35761025c565b806389a30271146106245780638a8c523c1461064f5780638da5cb5b146106665780638ea5220f14610691578063924de9b7146106bc5761025c565b8063313ce567116101d25780636a486a8e116101965780636a486a8e146105265780636ddd17131461055157806370a082311461057c578063715018a6146105b9578063751039fc146105d05780637571336a146105fb5761025c565b8063313ce5671461043f57806349bd5a5e1461046a5780634a62bb65146104955780634fbee193146104c057806366ca9b83146104fd5761025c565b806318160ddd1161021957806318160ddd1461035a5780631816467f14610385578063203e727e146103ae57806323b872dd146103d757806327c8f835146104145761025c565b806302dbd8f81461026157806306fdde031461028a578063095ea7b3146102b557806310d5de53146102f25780631694505e1461032f5761025c565b3661025c57005b600080fd5b34801561026d57600080fd5b5061028860048036038101906102839190612bbc565b6109c5565b005b34801561029657600080fd5b5061029f610aaf565b6040516102ac9190612c95565b60405180910390f35b3480156102c157600080fd5b506102dc60048036038101906102d79190612d15565b610b41565b6040516102e99190612d70565b60405180910390f35b3480156102fe57600080fd5b5061031960048036038101906103149190612d8b565b610b5f565b6040516103269190612d70565b60405180910390f35b34801561033b57600080fd5b50610344610b7f565b6040516103519190612e17565b60405180910390f35b34801561036657600080fd5b5061036f610ba3565b60405161037c9190612e41565b60405180910390f35b34801561039157600080fd5b506103ac60048036038101906103a79190612d8b565b610bad565b005b3480156103ba57600080fd5b506103d560048036038101906103d09190612e5c565b610ce9565b005b3480156103e357600080fd5b506103fe60048036038101906103f99190612e89565b610df8565b60405161040b9190612d70565b60405180910390f35b34801561042057600080fd5b50610429610ef0565b6040516104369190612eeb565b60405180910390f35b34801561044b57600080fd5b50610454610ef6565b6040516104619190612f22565b60405180910390f35b34801561047657600080fd5b5061047f610eff565b60405161048c9190612eeb565b60405180910390f35b3480156104a157600080fd5b506104aa610f23565b6040516104b79190612d70565b60405180910390f35b3480156104cc57600080fd5b506104e760048036038101906104e29190612d8b565b610f36565b6040516104f49190612d70565b60405180910390f35b34801561050957600080fd5b50610524600480360381019061051f9190612bbc565b610f8c565b005b34801561053257600080fd5b5061053b611076565b6040516105489190612e41565b60405180910390f35b34801561055d57600080fd5b5061056661107c565b6040516105739190612d70565b60405180910390f35b34801561058857600080fd5b506105a3600480360381019061059e9190612d8b565b61108f565b6040516105b09190612e41565b60405180910390f35b3480156105c557600080fd5b506105ce6110d7565b005b3480156105dc57600080fd5b506105e561115f565b6040516105f29190612d70565b60405180910390f35b34801561060757600080fd5b50610622600480360381019061061d9190612f69565b6111ff565b005b34801561063057600080fd5b506106396112d6565b6040516106469190612eeb565b60405180910390f35b34801561065b57600080fd5b506106646112fc565b005b34801561067257600080fd5b5061067b6113b0565b6040516106889190612eeb565b60405180910390f35b34801561069d57600080fd5b506106a66113da565b6040516106b39190612eeb565b60405180910390f35b3480156106c857600080fd5b506106e360048036038101906106de9190612fa9565b611400565b005b3480156106f157600080fd5b506106fa611499565b6040516107079190612c95565b60405180910390f35b34801561071c57600080fd5b5061072561152b565b6040516107329190612e41565b60405180910390f35b34801561074757600080fd5b50610750611531565b60405161075d9190612e41565b60405180910390f35b34801561077257600080fd5b5061078d60048036038101906107889190612d15565b611537565b60405161079a9190612d70565b60405180910390f35b3480156107af57600080fd5b506107b8611555565b6040516107c59190612d70565b60405180910390f35b3480156107da57600080fd5b506107f560048036038101906107f09190612f69565b611568565b005b34801561080357600080fd5b5061081e60048036038101906108199190612e5c565b61168d565b005b34801561082c57600080fd5b5061083561179c565b6040516108429190612e41565b60405180910390f35b34801561085757600080fd5b50610872600480360381019061086d9190612e5c565b6117a2565b60405161087f9190612d70565b60405180910390f35b34801561089457600080fd5b5061089d6118f7565b6040516108aa9190612e41565b60405180910390f35b3480156108bf57600080fd5b506108da60048036038101906108d59190612fd6565b6118fd565b6040516108e79190612e41565b60405180910390f35b3480156108fc57600080fd5b50610905611984565b6040516109129190612e41565b60405180910390f35b34801561092757600080fd5b5061093061198a565b60405161093d9190612e41565b60405180910390f35b34801561095257600080fd5b5061096d60048036038101906109689190612d8b565b611990565b005b34801561097b57600080fd5b50610984611a87565b6040516109919190612e41565b60405180910390f35b3480156109a657600080fd5b506109af611a8d565b6040516109bc9190612e41565b60405180910390f35b6109cd611a93565b73ffffffffffffffffffffffffffffffffffffffff166109eb6113b0565b73ffffffffffffffffffffffffffffffffffffffff1614610a41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3890613062565b60405180910390fd5b8160108190555080601181905550601154601054610a5f91906130b1565b600f81905550600a600f541115610aab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa290613153565b60405180910390fd5b5050565b606060038054610abe906131a2565b80601f0160208091040260200160405190810160405280929190818152602001828054610aea906131a2565b8015610b375780601f10610b0c57610100808354040283529160200191610b37565b820191906000526020600020905b815481529060010190602001808311610b1a57829003601f168201915b5050505050905090565b6000610b55610b4e611a93565b8484611a9b565b6001905092915050565b60136020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610bb5611a93565b73ffffffffffffffffffffffffffffffffffffffff16610bd36113b0565b73ffffffffffffffffffffffffffffffffffffffff1614610c29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2090613062565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610cf1611a93565b73ffffffffffffffffffffffffffffffffffffffff16610d0f6113b0565b73ffffffffffffffffffffffffffffffffffffffff1614610d65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5c90613062565b60405180910390fd5b670de0b6b3a76400006103e86001610d7b610ba3565b610d8591906131d3565b610d8f919061325c565b610d99919061325c565b811015610ddb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd2906132ff565b60405180910390fd5b670de0b6b3a764000081610def91906131d3565b60088190555050565b6000610e05848484611c64565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610e50611a93565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610ed0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec790613391565b60405180910390fd5b610ee485610edc611a93565b858403611a9b565b60019150509392505050565b61dead81565b60006012905090565b7f00000000000000000000000019eb3ddf8bf37178d6b6c29162eee56565efe47f81565b600b60009054906101000a900460ff1681565b6000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610f94611a93565b73ffffffffffffffffffffffffffffffffffffffff16610fb26113b0565b73ffffffffffffffffffffffffffffffffffffffff1614611008576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fff90613062565b60405180910390fd5b81600d8190555080600e81905550600e54600d5461102691906130b1565b600c81905550600a600c541115611072576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106990613153565b60405180910390fd5b5050565b600f5481565b600b60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6110df611a93565b73ffffffffffffffffffffffffffffffffffffffff166110fd6113b0565b73ffffffffffffffffffffffffffffffffffffffff1614611153576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114a90613062565b60405180910390fd5b61115d60006125c3565b565b6000611169611a93565b73ffffffffffffffffffffffffffffffffffffffff166111876113b0565b73ffffffffffffffffffffffffffffffffffffffff16146111dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d490613062565b60405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055506001905090565b611207611a93565b73ffffffffffffffffffffffffffffffffffffffff166112256113b0565b73ffffffffffffffffffffffffffffffffffffffff161461127b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127290613062565b60405180910390fd5b80601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611304611a93565b73ffffffffffffffffffffffffffffffffffffffff166113226113b0565b73ffffffffffffffffffffffffffffffffffffffff1614611378576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136f90613062565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611408611a93565b73ffffffffffffffffffffffffffffffffffffffff166114266113b0565b73ffffffffffffffffffffffffffffffffffffffff161461147c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147390613062565b60405180910390fd5b80600b60026101000a81548160ff02191690831515021790555050565b6060600480546114a8906131a2565b80601f01602080910402602001604051908101604052809291908181526020018280546114d4906131a2565b80156115215780601f106114f657610100808354040283529160200191611521565b820191906000526020600020905b81548152906001019060200180831161150457829003601f168201915b5050505050905090565b600d5481565b60105481565b600061154b611544611a93565b8484611c64565b6001905092915050565b600b60019054906101000a900460ff1681565b611570611a93565b73ffffffffffffffffffffffffffffffffffffffff1661158e6113b0565b73ffffffffffffffffffffffffffffffffffffffff16146115e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115db90613062565b60405180910390fd5b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516116819190612d70565b60405180910390a25050565b611695611a93565b73ffffffffffffffffffffffffffffffffffffffff166116b36113b0565b73ffffffffffffffffffffffffffffffffffffffff1614611709576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170090613062565b60405180910390fd5b670de0b6b3a76400006103e8600561171f610ba3565b61172991906131d3565b611733919061325c565b61173d919061325c565b81101561177f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177690613423565b60405180910390fd5b670de0b6b3a76400008161179391906131d3565b600a8190555050565b60085481565b60006117ac611a93565b73ffffffffffffffffffffffffffffffffffffffff166117ca6113b0565b73ffffffffffffffffffffffffffffffffffffffff1614611820576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181790613062565b60405180910390fd5b620186a0600161182e610ba3565b61183891906131d3565b611842919061325c565b821015611884576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187b906134b5565b60405180910390fd5b6103e86005611891610ba3565b61189b91906131d3565b6118a5919061325c565b8211156118e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118de90613547565b60405180910390fd5b8160098190555060019050919050565b600c5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b600e5481565b611998611a93565b73ffffffffffffffffffffffffffffffffffffffff166119b66113b0565b73ffffffffffffffffffffffffffffffffffffffff1614611a0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0390613062565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611a7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a72906135d9565b60405180910390fd5b611a84816125c3565b50565b60115481565b600a5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611b0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b019061366b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b70906136fd565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611c579190612e41565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611cd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cca9061378f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611d42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3990613821565b60405180910390fd5b60008103611d5b57611d5683836000612689565b6125be565b600b60009054906101000a900460ff161561216557611d786113b0565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611de65750611db66113b0565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611e1f5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611e59575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611e725750600660149054906101000a900460ff16155b1561216457600b60019054906101000a900460ff16611f6c57601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611f2c5750601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611f6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f629061388d565b60405180910390fd5b5b7f00000000000000000000000019eb3ddf8bf37178d6b6c29162eee56565efe47f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480156120115750601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156120b85760085481111561205b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120529061391f565b60405180910390fd5b600a546120678361108f565b8261207291906130b1565b11156120b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120aa9061398b565b60405180910390fd5b612163565b601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661216257600a546121158361108f565b8261212091906130b1565b1115612161576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121589061398b565b60405180910390fd5b5b5b5b5b60006121703061108f565b9050600060095482101590508080156121955750600b60029054906101000a900460ff165b80156121ae5750600660149054906101000a900460ff16155b801561220557507f00000000000000000000000019eb3ddf8bf37178d6b6c29162eee56565efe47f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b801561225b5750601260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156122b15750601260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156122f5576001600660146101000a81548160ff0219169083151502179055506122d9612908565b6000600660146101000a81548160ff0219169083151502179055505b6000600660149054906101000a900460ff16159050601260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806123ab5750601260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156123b557600090505b600080600083156125ac577f00000000000000000000000019eb3ddf8bf37178d6b6c29162eee56565efe47f73ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff1614801561241d57506000600f54115b1561248b5761244a606461243c600f548a61295890919063ffffffff16565b61296e90919063ffffffff16565b9250600f546011548461245d91906131d3565b612467919061325c565b9150600f546010548461247a91906131d3565b612484919061325c565b9050612553565b7f00000000000000000000000019eb3ddf8bf37178d6b6c29162eee56565efe47f73ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff161480156124e857506000600c54115b15612552576125156064612507600c548a61295890919063ffffffff16565b61296e90919063ffffffff16565b9250600c54600e548461252891906131d3565b612532919061325c565b9150600c54600d548461254591906131d3565b61254f919061325c565b90505b5b600083111561256857612567893085612689565b5b600082111561259d5761259c307f00000000000000000000000019eb3ddf8bf37178d6b6c29162eee56565efe47f84612689565b5b82876125a991906139ab565b96505b6125b7898989612689565b5050505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036126f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ef9061378f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612767576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275e90613821565b60405180910390fd5b612772838383612984565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156127f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ef90613a51565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461288b91906130b1565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516128ef9190612e41565b60405180910390a3612902848484612989565b50505050565b60006129133061108f565b9050600081036129235750612956565b601460095461293291906131d3565b81111561294b57601460095461294891906131d3565b90505b6129548161298e565b505b565b6000818361296691906131d3565b905092915050565b6000818361297c919061325c565b905092915050565b505050565b505050565b6000600267ffffffffffffffff8111156129ab576129aa613a71565b5b6040519080825280602002602001820160405280156129d95781602001602082028036833780820191505090505b50905030816000815181106129f1576129f0613aa0565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681600181518110612a6257612a61613aa0565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612ac7307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611a9b565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff16635c11d79583600084600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b8152600401612b4b959493929190613bc8565b600060405180830381600087803b158015612b6557600080fd5b505af1158015612b79573d6000803e3d6000fd5b505050505050565b600080fd5b6000819050919050565b612b9981612b86565b8114612ba457600080fd5b50565b600081359050612bb681612b90565b92915050565b60008060408385031215612bd357612bd2612b81565b5b6000612be185828601612ba7565b9250506020612bf285828601612ba7565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612c36578082015181840152602081019050612c1b565b83811115612c45576000848401525b50505050565b6000601f19601f8301169050919050565b6000612c6782612bfc565b612c718185612c07565b9350612c81818560208601612c18565b612c8a81612c4b565b840191505092915050565b60006020820190508181036000830152612caf8184612c5c565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612ce282612cb7565b9050919050565b612cf281612cd7565b8114612cfd57600080fd5b50565b600081359050612d0f81612ce9565b92915050565b60008060408385031215612d2c57612d2b612b81565b5b6000612d3a85828601612d00565b9250506020612d4b85828601612ba7565b9150509250929050565b60008115159050919050565b612d6a81612d55565b82525050565b6000602082019050612d856000830184612d61565b92915050565b600060208284031215612da157612da0612b81565b5b6000612daf84828501612d00565b91505092915050565b6000819050919050565b6000612ddd612dd8612dd384612cb7565b612db8565b612cb7565b9050919050565b6000612def82612dc2565b9050919050565b6000612e0182612de4565b9050919050565b612e1181612df6565b82525050565b6000602082019050612e2c6000830184612e08565b92915050565b612e3b81612b86565b82525050565b6000602082019050612e566000830184612e32565b92915050565b600060208284031215612e7257612e71612b81565b5b6000612e8084828501612ba7565b91505092915050565b600080600060608486031215612ea257612ea1612b81565b5b6000612eb086828701612d00565b9350506020612ec186828701612d00565b9250506040612ed286828701612ba7565b9150509250925092565b612ee581612cd7565b82525050565b6000602082019050612f006000830184612edc565b92915050565b600060ff82169050919050565b612f1c81612f06565b82525050565b6000602082019050612f376000830184612f13565b92915050565b612f4681612d55565b8114612f5157600080fd5b50565b600081359050612f6381612f3d565b92915050565b60008060408385031215612f8057612f7f612b81565b5b6000612f8e85828601612d00565b9250506020612f9f85828601612f54565b9150509250929050565b600060208284031215612fbf57612fbe612b81565b5b6000612fcd84828501612f54565b91505092915050565b60008060408385031215612fed57612fec612b81565b5b6000612ffb85828601612d00565b925050602061300c85828601612d00565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061304c602083612c07565b915061305782613016565b602082019050919050565b6000602082019050818103600083015261307b8161303f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006130bc82612b86565b91506130c783612b86565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156130fc576130fb613082565b5b828201905092915050565b7f4d757374206b656570206665657320617420313025206f72206c657373000000600082015250565b600061313d601d83612c07565b915061314882613107565b602082019050919050565b6000602082019050818103600083015261316c81613130565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806131ba57607f821691505b6020821081036131cd576131cc613173565b5b50919050565b60006131de82612b86565b91506131e983612b86565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561322257613221613082565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061326782612b86565b915061327283612b86565b9250826132825761328161322d565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b60006132e9602f83612c07565b91506132f48261328d565b604082019050919050565b60006020820190508181036000830152613318816132dc565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b600061337b602883612c07565b91506133868261331f565b604082019050919050565b600060208201905081810360008301526133aa8161336e565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b600061340d602483612c07565b9150613418826133b1565b604082019050919050565b6000602082019050818103600083015261343c81613400565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b600061349f603583612c07565b91506134aa82613443565b604082019050919050565b600060208201905081810360008301526134ce81613492565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000613531603483612c07565b915061353c826134d5565b604082019050919050565b6000602082019050818103600083015261356081613524565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006135c3602683612c07565b91506135ce82613567565b604082019050919050565b600060208201905081810360008301526135f2816135b6565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613655602483612c07565b9150613660826135f9565b604082019050919050565b6000602082019050818103600083015261368481613648565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006136e7602283612c07565b91506136f28261368b565b604082019050919050565b60006020820190508181036000830152613716816136da565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613779602583612c07565b91506137848261371d565b604082019050919050565b600060208201905081810360008301526137a88161376c565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061380b602383612c07565b9150613816826137af565b604082019050919050565b6000602082019050818103600083015261383a816137fe565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000613877601683612c07565b915061388282613841565b602082019050919050565b600060208201905081810360008301526138a68161386a565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000613909603583612c07565b9150613914826138ad565b604082019050919050565b60006020820190508181036000830152613938816138fc565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000613975601383612c07565b91506139808261393f565b602082019050919050565b600060208201905081810360008301526139a481613968565b9050919050565b60006139b682612b86565b91506139c183612b86565b9250828210156139d4576139d3613082565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613a3b602683612c07565b9150613a46826139df565b604082019050919050565b60006020820190508181036000830152613a6a81613a2e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b6000613af4613aef613aea84613acf565b612db8565b612b86565b9050919050565b613b0481613ad9565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613b3f81612cd7565b82525050565b6000613b518383613b36565b60208301905092915050565b6000602082019050919050565b6000613b7582613b0a565b613b7f8185613b15565b9350613b8a83613b26565b8060005b83811015613bbb578151613ba28882613b45565b9750613bad83613b5d565b925050600181019050613b8e565b5085935050505092915050565b600060a082019050613bdd6000830188612e32565b613bea6020830187613afb565b8181036040830152613bfc8186613b6a565b9050613c0b6060830185612edc565b613c186080830184612e32565b969550505050505056fea26469706673582212203670a7efc80cf8598f2107453235e2687ab0248fd28ec109246195182a3951fa64736f6c634300080f0033

Deployed Bytecode Sourcemap

23727:10737:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29003:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8583:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10750:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24691:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23807:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9703:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29519:189;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27766:275;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11401:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23910:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9545:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23865:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24221:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29718:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28684:311;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24444:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24301:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9874:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1818:103;;;;;;;;;;;;;:::i;:::-;;27070:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28313:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23970:64;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26906:112;;;;;;;;;;;;;:::i;:::-;;1167:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24073:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28576:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8802:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24374:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24479:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10214:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24261:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29329:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28049:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24106:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27261:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24340:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10452:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24148:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24405:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2076:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24511:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24188:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29003:318;1398:12;:10;:12::i;:::-;1387:23;;:7;:5;:7::i;:::-;:23;;;1379:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;29135:7:::1;29122:10;:20;;;;29172:13;29153:16;:32;;;;29225:16;;29212:10;;:29;;;;:::i;:::-;29196:13;:45;;;;29277:2;29260:13;;:19;;29252:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;29003:318:::0;;:::o;8583:100::-;8637:13;8670:5;8663:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8583:100;:::o;10750:169::-;10833:4;10850:39;10859:12;:10;:12::i;:::-;10873:7;10882:6;10850:8;:39::i;:::-;10907:4;10900:11;;10750:169;;;;:::o;24691:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;23807:51::-;;;:::o;9703:108::-;9764:7;9791:12;;9784:19;;9703:108;:::o;29519:189::-;1398:12;:10;:12::i;:::-;1387:23;;:7;:5;:7::i;:::-;:23;;;1379:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;29655:9:::1;;;;;;;;;;;29624:41;;29641:12;29624:41;;;;;;;;;;;;29688:12;29676:9;;:24;;;;;;;;;;;;;;;;;;29519:189:::0;:::o;27766:275::-;1398:12;:10;:12::i;:::-;1387:23;;:7;:5;:7::i;:::-;:23;;;1379:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;27903:4:::1;27895;27890:1;27874:13;:11;:13::i;:::-;:17;;;;:::i;:::-;27873:26;;;;:::i;:::-;27872:35;;;;:::i;:::-;27862:6;:45;;27840:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;28026:6;28016;:17;;;;:::i;:::-;27993:20;:40;;;;27766:275:::0;:::o;11401:492::-;11541:4;11558:36;11568:6;11576:9;11587:6;11558:9;:36::i;:::-;11607:24;11634:11;:19;11646:6;11634:19;;;;;;;;;;;;;;;:33;11654:12;:10;:12::i;:::-;11634:33;;;;;;;;;;;;;;;;11607:60;;11706:6;11686:16;:26;;11678:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;11793:57;11802:6;11810:12;:10;:12::i;:::-;11843:6;11824:16;:25;11793:8;:57::i;:::-;11881:4;11874:11;;;11401:492;;;;;:::o;23910:53::-;23956:6;23910:53;:::o;9545:93::-;9603:5;9628:2;9621:9;;9545:93;:::o;23865:38::-;;;:::o;24221:33::-;;;;;;;;;;;;;:::o;29718:126::-;29784:4;29808:19;:28;29828:7;29808:28;;;;;;;;;;;;;;;;;;;;;;;;;29801:35;;29718:126;;;:::o;28684:311::-;1398:12;:10;:12::i;:::-;1387:23;;:7;:5;:7::i;:::-;:23;;;1379:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;28814:7:::1;28802:9;:19;;;;28850:13;28832:15;:31;;;;28901:15;;28889:9;;:27;;;;:::i;:::-;28874:12;:42;;;;28951:2;28935:12;;:18;;28927:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;28684:311:::0;;:::o;24444:28::-;;;;:::o;24301:30::-;;;;;;;;;;;;;:::o;9874:127::-;9948:7;9975:9;:18;9985:7;9975:18;;;;;;;;;;;;;;;;9968:25;;9874:127;;;:::o;1818:103::-;1398:12;:10;:12::i;:::-;1387:23;;:7;:5;:7::i;:::-;:23;;;1379:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1883:30:::1;1910:1;1883:18;:30::i;:::-;1818:103::o:0;27070:121::-;27122:4;1398:12;:10;:12::i;:::-;1387:23;;:7;:5;:7::i;:::-;:23;;;1379:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;27156:5:::1;27139:14;;:22;;;;;;;;;;;;;;;;;;27179:4;27172:11;;27070:121:::0;:::o;28313:167::-;1398:12;:10;:12::i;:::-;1387:23;;:7;:5;:7::i;:::-;:23;;;1379:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;28468:4:::1;28426:31;:39;28458:6;28426:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;28313:167:::0;;:::o;23970:64::-;;;;;;;;;;;;;:::o;26906:112::-;1398:12;:10;:12::i;:::-;1387:23;;:7;:5;:7::i;:::-;:23;;;1379:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;26977:4:::1;26961:13;;:20;;;;;;;;;;;;;;;;;;27006:4;26992:11;;:18;;;;;;;;;;;;;;;;;;26906:112::o:0;1167:87::-;1213:7;1240:6;;;;;;;;;;;1233:13;;1167:87;:::o;24073:24::-;;;;;;;;;;;;;:::o;28576:100::-;1398:12;:10;:12::i;:::-;1387:23;;:7;:5;:7::i;:::-;:23;;;1379:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;28661:7:::1;28647:11;;:21;;;;;;;;;;;;;;;;;;28576:100:::0;:::o;8802:104::-;8858:13;8891:7;8884:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8802:104;:::o;24374:24::-;;;;:::o;24479:25::-;;;;:::o;10214:175::-;10300:4;10317:42;10327:12;:10;:12::i;:::-;10341:9;10352:6;10317:9;:42::i;:::-;10377:4;10370:11;;10214:175;;;;:::o;24261:33::-;;;;;;;;;;;;;:::o;29329:182::-;1398:12;:10;:12::i;:::-;1387:23;;:7;:5;:7::i;:::-;:23;;;1379:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;29445:8:::1;29414:19;:28;29434:7;29414:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;29485:7;29469:34;;;29494:8;29469:34;;;;;;:::i;:::-;;;;;;;;29329:182:::0;;:::o;28049:256::-;1398:12;:10;:12::i;:::-;1387:23;;:7;:5;:7::i;:::-;:23;;;1379:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;28189:4:::1;28181;28176:1;28160:13;:11;:13::i;:::-;:17;;;;:::i;:::-;28159:26;;;;:::i;:::-;28158:35;;;;:::i;:::-;28148:6;:45;;28126:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;28290:6;28280;:17;;;;:::i;:::-;28268:9;:29;;;;28049:256:::0;:::o;24106:35::-;;;;:::o;27261:497::-;27369:4;1398:12;:10;:12::i;:::-;1387:23;;:7;:5;:7::i;:::-;:23;;;1379:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;27448:6:::1;27443:1;27427:13;:11;:13::i;:::-;:17;;;;:::i;:::-;27426:28;;;;:::i;:::-;27413:9;:41;;27391:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;27603:4;27598:1;27582:13;:11;:13::i;:::-;:17;;;;:::i;:::-;27581:26;;;;:::i;:::-;27568:9;:39;;27546:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;27719:9;27698:18;:30;;;;27746:4;27739:11;;27261:497:::0;;;:::o;24340:27::-;;;;:::o;10452:151::-;10541:7;10568:11;:18;10580:5;10568:18;;;;;;;;;;;;;;;:27;10587:7;10568:27;;;;;;;;;;;;;;;;10561:34;;10452:151;;;;:::o;24148:33::-;;;;:::o;24405:30::-;;;;:::o;2076:201::-;1398:12;:10;:12::i;:::-;1387:23;;:7;:5;:7::i;:::-;:23;;;1379:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2185:1:::1;2165:22;;:8;:22;;::::0;2157:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2241:28;2260:8;2241:18;:28::i;:::-;2076:201:::0;:::o;24511:31::-;;;;:::o;24188:24::-;;;;:::o;539:98::-;592:7;619:10;612:17;;539:98;:::o;14242:380::-;14395:1;14378:19;;:5;:19;;;14370:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14476:1;14457:21;;:7;:21;;;14449:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14560:6;14530:11;:18;14542:5;14530:18;;;;;;;;;;;;;;;:27;14549:7;14530:27;;;;;;;;;;;;;;;:36;;;;14598:7;14582:32;;14591:5;14582:32;;;14607:6;14582:32;;;;;;:::i;:::-;;;;;;;;14242:380;;;:::o;29852:3679::-;30000:1;29984:18;;:4;:18;;;29976:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;30077:1;30063:16;;:2;:16;;;30055:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;30146:1;30136:6;:11;30132:93;;30164:28;30180:4;30186:2;30190:1;30164:15;:28::i;:::-;30207:7;;30132:93;30241:14;;;;;;;;;;;30237:1430;;;30302:7;:5;:7::i;:::-;30294:15;;:4;:15;;;;:49;;;;;30336:7;:5;:7::i;:::-;30330:13;;:2;:13;;;;30294:49;:86;;;;;30378:1;30364:16;;:2;:16;;;;30294:86;:128;;;;;30415:6;30401:21;;:2;:21;;;;30294:128;:158;;;;;30444:8;;;;;;;;;;;30443:9;30294:158;30272:1384;;;30492:13;;;;;;;;;;;30487:223;;30564:19;:25;30584:4;30564:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;30593:19;:23;30613:2;30593:23;;;;;;;;;;;;;;;;;;;;;;;;;30564:52;30530:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;30487:223;30924:13;30916:21;;:4;:21;;;:82;;;;;30963:31;:35;30995:2;30963:35;;;;;;;;;;;;;;;;;;;;;;;;;30962:36;30916:82;30890:751;;;31085:20;;31075:6;:30;;31041:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;31293:9;;31276:13;31286:2;31276:9;:13::i;:::-;31267:6;:22;;;;:::i;:::-;:35;;31233:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;30890:751;;;31421:31;:35;31453:2;31421:35;;;;;;;;;;;;;;;;;;;;;;;;;31416:225;;31541:9;;31524:13;31534:2;31524:9;:13::i;:::-;31515:6;:22;;;;:::i;:::-;:35;;31481:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;31416:225;30890:751;30272:1384;30237:1430;31679:28;31710:24;31728:4;31710:9;:24::i;:::-;31679:55;;31747:12;31786:18;;31762:20;:42;;31747:57;;31835:7;:35;;;;;31859:11;;;;;;;;;;;31835:35;:61;;;;;31888:8;;;;;;;;;;;31887:9;31835:61;:97;;;;;31919:13;31913:19;;:2;:19;;;31835:97;:140;;;;;31950:19;:25;31970:4;31950:25;;;;;;;;;;;;;;;;;;;;;;;;;31949:26;31835:140;:181;;;;;31993:19;:23;32013:2;31993:23;;;;;;;;;;;;;;;;;;;;;;;;;31992:24;31835:181;31817:313;;;32054:4;32043:8;;:15;;;;;;;;;;;;;;;;;;32075:10;:8;:10::i;:::-;32113:5;32102:8;;:16;;;;;;;;;;;;;;;;;;31817:313;32142:12;32158:8;;;;;;;;;;;32157:9;32142:24;;32268:19;:25;32288:4;32268:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;32297:19;:23;32317:2;32297:23;;;;;;;;;;;;;;;;;;;;;;;;;32268:52;32264:100;;;32347:5;32337:15;;32264:100;32376:12;32403:26;32444:20;32557:7;32553:925;;;32615:13;32609:19;;:2;:19;;;:40;;;;;32648:1;32632:13;;:17;32609:40;32605:583;;;32677:34;32707:3;32677:25;32688:13;;32677:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;32670:41;;32779:13;;32759:16;;32752:4;:23;;;;:::i;:::-;32751:41;;;;:::i;:::-;32730:62;;32848:13;;32834:10;;32827:4;:17;;;;:::i;:::-;32826:35;;;;:::i;:::-;32811:50;;32605:583;;;32931:13;32923:21;;:4;:21;;;:41;;;;;32963:1;32948:12;;:16;32923:41;32919:269;;;32992:33;33021:3;32992:24;33003:12;;32992:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;32985:40;;33092:12;;33073:15;;33066:4;:22;;;;:::i;:::-;33065:39;;;;:::i;:::-;33044:60;;33160:12;;33147:9;;33140:4;:16;;;;:::i;:::-;33139:33;;;;:::i;:::-;33124:48;;32919:269;32605:583;33214:1;33208:4;:7;33204:90;;;33236:42;33252:4;33266;33273;33236:15;:42::i;:::-;33204:90;33333:1;33312:18;:22;33308:128;;;33355:65;33379:4;33386:13;33401:18;33355:15;:65::i;:::-;33308:128;33462:4;33452:14;;;;;:::i;:::-;;;32553:925;33490:33;33506:4;33512:2;33516:6;33490:15;:33::i;:::-;29965:3566;;;;;;29852:3679;;;;:::o;2437:191::-;2511:16;2530:6;;;;;;;;;;;2511:25;;2556:8;2547:6;;:17;;;;;;;;;;;;;;;;;;2611:8;2580:40;;2601:8;2580:40;;;;;;;;;;;;2500:128;2437:191;:::o;12383:733::-;12541:1;12523:20;;:6;:20;;;12515:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;12625:1;12604:23;;:9;:23;;;12596:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;12680:47;12701:6;12709:9;12720:6;12680:20;:47::i;:::-;12740:21;12764:9;:17;12774:6;12764:17;;;;;;;;;;;;;;;;12740:41;;12817:6;12800:13;:23;;12792:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;12938:6;12922:13;:22;12902:9;:17;12912:6;12902:17;;;;;;;;;;;;;;;:42;;;;12990:6;12966:9;:20;12976:9;12966:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;13031:9;13014:35;;13023:6;13014:35;;;13042:6;13014:35;;;;;;:::i;:::-;;;;;;;;13062:46;13082:6;13090:9;13101:6;13062:19;:46::i;:::-;12504:612;12383:733;;;:::o;34119:340::-;34158:23;34184:24;34202:4;34184:9;:24::i;:::-;34158:50;;34242:1;34223:15;:20;34219:59;;34260:7;;;34219:59;34333:2;34312:18;;:23;;;;:::i;:::-;34294:15;:41;34290:115;;;34391:2;34370:18;;:23;;;;:::i;:::-;34352:41;;34290:115;34417:34;34435:15;34417:17;:34::i;:::-;34147:312;34119:340;:::o;19695:98::-;19753:7;19784:1;19780;:5;;;;:::i;:::-;19773:12;;19695:98;;;;:::o;20094:::-;20152:7;20183:1;20179;:5;;;;:::i;:::-;20172:12;;20094:98;;;;:::o;15222:125::-;;;;:::o;15951:124::-;;;;:::o;33539:572::-;33666:21;33704:1;33690:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33666:40;;33735:4;33717;33722:1;33717:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;33761:4;;;;;;;;;;;33751;33756:1;33751:7;;;;;;;;:::i;:::-;;;;;;;:14;;;;;;;;;;;33778:62;33795:4;33810:15;33828:11;33778:8;:62::i;:::-;33879:15;:69;;;33963:11;33989:1;34034:4;34053:9;;;;;;;;;;;34077:15;33879:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33595:516;33539:572;:::o;88:117:1:-;197:1;194;187:12;334:77;371:7;400:5;389:16;;334:77;;;:::o;417:122::-;490:24;508:5;490:24;:::i;:::-;483:5;480:35;470:63;;529:1;526;519:12;470:63;417:122;:::o;545:139::-;591:5;629:6;616:20;607:29;;645:33;672:5;645:33;:::i;:::-;545:139;;;;:::o;690:474::-;758:6;766;815:2;803:9;794:7;790:23;786:32;783:119;;;821:79;;:::i;:::-;783:119;941:1;966:53;1011:7;1002:6;991:9;987:22;966:53;:::i;:::-;956:63;;912:117;1068:2;1094:53;1139:7;1130:6;1119:9;1115:22;1094:53;:::i;:::-;1084:63;;1039:118;690:474;;;;;:::o;1170:99::-;1222:6;1256:5;1250:12;1240:22;;1170:99;;;:::o;1275:169::-;1359:11;1393:6;1388:3;1381:19;1433:4;1428:3;1424:14;1409:29;;1275:169;;;;:::o;1450:307::-;1518:1;1528:113;1542:6;1539:1;1536:13;1528:113;;;1627:1;1622:3;1618:11;1612:18;1608:1;1603:3;1599:11;1592:39;1564:2;1561:1;1557:10;1552:15;;1528:113;;;1659:6;1656:1;1653:13;1650:101;;;1739:1;1730:6;1725:3;1721:16;1714:27;1650:101;1499:258;1450:307;;;:::o;1763:102::-;1804:6;1855:2;1851:7;1846:2;1839:5;1835:14;1831:28;1821:38;;1763:102;;;:::o;1871:364::-;1959:3;1987:39;2020:5;1987:39;:::i;:::-;2042:71;2106:6;2101:3;2042:71;:::i;:::-;2035:78;;2122:52;2167:6;2162:3;2155:4;2148:5;2144:16;2122:52;:::i;:::-;2199:29;2221:6;2199:29;:::i;:::-;2194:3;2190:39;2183:46;;1963:272;1871:364;;;;:::o;2241:313::-;2354:4;2392:2;2381:9;2377:18;2369:26;;2441:9;2435:4;2431:20;2427:1;2416:9;2412:17;2405:47;2469:78;2542:4;2533:6;2469:78;:::i;:::-;2461:86;;2241:313;;;;:::o;2560:126::-;2597:7;2637:42;2630:5;2626:54;2615:65;;2560:126;;;:::o;2692:96::-;2729:7;2758:24;2776:5;2758:24;:::i;:::-;2747:35;;2692:96;;;:::o;2794:122::-;2867:24;2885:5;2867:24;:::i;:::-;2860:5;2857:35;2847:63;;2906:1;2903;2896:12;2847:63;2794:122;:::o;2922:139::-;2968:5;3006:6;2993:20;2984:29;;3022:33;3049:5;3022:33;:::i;:::-;2922:139;;;;:::o;3067:474::-;3135:6;3143;3192:2;3180:9;3171:7;3167:23;3163:32;3160:119;;;3198:79;;:::i;:::-;3160:119;3318:1;3343:53;3388:7;3379:6;3368:9;3364:22;3343:53;:::i;:::-;3333:63;;3289:117;3445:2;3471:53;3516:7;3507:6;3496:9;3492:22;3471:53;:::i;:::-;3461:63;;3416:118;3067:474;;;;;:::o;3547:90::-;3581:7;3624:5;3617:13;3610:21;3599:32;;3547:90;;;:::o;3643:109::-;3724:21;3739:5;3724:21;:::i;:::-;3719:3;3712:34;3643:109;;:::o;3758:210::-;3845:4;3883:2;3872:9;3868:18;3860:26;;3896:65;3958:1;3947:9;3943:17;3934:6;3896:65;:::i;:::-;3758:210;;;;:::o;3974:329::-;4033:6;4082:2;4070:9;4061:7;4057:23;4053:32;4050:119;;;4088:79;;:::i;:::-;4050:119;4208:1;4233:53;4278:7;4269:6;4258:9;4254:22;4233:53;:::i;:::-;4223:63;;4179:117;3974:329;;;;:::o;4309:60::-;4337:3;4358:5;4351:12;;4309:60;;;:::o;4375:142::-;4425:9;4458:53;4476:34;4485:24;4503:5;4485:24;:::i;:::-;4476:34;:::i;:::-;4458:53;:::i;:::-;4445:66;;4375:142;;;:::o;4523:126::-;4573:9;4606:37;4637:5;4606:37;:::i;:::-;4593:50;;4523:126;;;:::o;4655:152::-;4731:9;4764:37;4795:5;4764:37;:::i;:::-;4751:50;;4655:152;;;:::o;4813:183::-;4926:63;4983:5;4926:63;:::i;:::-;4921:3;4914:76;4813:183;;:::o;5002:274::-;5121:4;5159:2;5148:9;5144:18;5136:26;;5172:97;5266:1;5255:9;5251:17;5242:6;5172:97;:::i;:::-;5002:274;;;;:::o;5282:118::-;5369:24;5387:5;5369:24;:::i;:::-;5364:3;5357:37;5282:118;;:::o;5406:222::-;5499:4;5537:2;5526:9;5522:18;5514:26;;5550:71;5618:1;5607:9;5603:17;5594:6;5550:71;:::i;:::-;5406:222;;;;:::o;5634:329::-;5693:6;5742:2;5730:9;5721:7;5717:23;5713:32;5710:119;;;5748:79;;:::i;:::-;5710:119;5868:1;5893:53;5938:7;5929:6;5918:9;5914:22;5893:53;:::i;:::-;5883:63;;5839:117;5634:329;;;;:::o;5969:619::-;6046:6;6054;6062;6111:2;6099:9;6090:7;6086:23;6082:32;6079:119;;;6117:79;;:::i;:::-;6079:119;6237:1;6262:53;6307:7;6298:6;6287:9;6283:22;6262:53;:::i;:::-;6252:63;;6208:117;6364:2;6390:53;6435:7;6426:6;6415:9;6411:22;6390:53;:::i;:::-;6380:63;;6335:118;6492:2;6518:53;6563:7;6554:6;6543:9;6539:22;6518:53;:::i;:::-;6508:63;;6463:118;5969:619;;;;;:::o;6594:118::-;6681:24;6699:5;6681:24;:::i;:::-;6676:3;6669:37;6594:118;;:::o;6718:222::-;6811:4;6849:2;6838:9;6834:18;6826:26;;6862:71;6930:1;6919:9;6915:17;6906:6;6862:71;:::i;:::-;6718:222;;;;:::o;6946:86::-;6981:7;7021:4;7014:5;7010:16;6999:27;;6946:86;;;:::o;7038:112::-;7121:22;7137:5;7121:22;:::i;:::-;7116:3;7109:35;7038:112;;:::o;7156:214::-;7245:4;7283:2;7272:9;7268:18;7260:26;;7296:67;7360:1;7349:9;7345:17;7336:6;7296:67;:::i;:::-;7156:214;;;;:::o;7376:116::-;7446:21;7461:5;7446:21;:::i;:::-;7439:5;7436:32;7426:60;;7482:1;7479;7472:12;7426:60;7376:116;:::o;7498:133::-;7541:5;7579:6;7566:20;7557:29;;7595:30;7619:5;7595:30;:::i;:::-;7498:133;;;;:::o;7637:468::-;7702:6;7710;7759:2;7747:9;7738:7;7734:23;7730:32;7727:119;;;7765:79;;:::i;:::-;7727:119;7885:1;7910:53;7955:7;7946:6;7935:9;7931:22;7910:53;:::i;:::-;7900:63;;7856:117;8012:2;8038:50;8080:7;8071:6;8060:9;8056:22;8038:50;:::i;:::-;8028:60;;7983:115;7637:468;;;;;:::o;8111:323::-;8167:6;8216:2;8204:9;8195:7;8191:23;8187:32;8184:119;;;8222:79;;:::i;:::-;8184:119;8342:1;8367:50;8409:7;8400:6;8389:9;8385:22;8367:50;:::i;:::-;8357:60;;8313:114;8111:323;;;;:::o;8440:474::-;8508:6;8516;8565:2;8553:9;8544:7;8540:23;8536:32;8533:119;;;8571:79;;:::i;:::-;8533:119;8691:1;8716:53;8761:7;8752:6;8741:9;8737:22;8716:53;:::i;:::-;8706:63;;8662:117;8818:2;8844:53;8889:7;8880:6;8869:9;8865:22;8844:53;:::i;:::-;8834:63;;8789:118;8440:474;;;;;:::o;8920:182::-;9060:34;9056:1;9048:6;9044:14;9037:58;8920:182;:::o;9108:366::-;9250:3;9271:67;9335:2;9330:3;9271:67;:::i;:::-;9264:74;;9347:93;9436:3;9347:93;:::i;:::-;9465:2;9460:3;9456:12;9449:19;;9108:366;;;:::o;9480:419::-;9646:4;9684:2;9673:9;9669:18;9661:26;;9733:9;9727:4;9723:20;9719:1;9708:9;9704:17;9697:47;9761:131;9887:4;9761:131;:::i;:::-;9753:139;;9480:419;;;:::o;9905:180::-;9953:77;9950:1;9943:88;10050:4;10047:1;10040:15;10074:4;10071:1;10064:15;10091:305;10131:3;10150:20;10168:1;10150:20;:::i;:::-;10145:25;;10184:20;10202:1;10184:20;:::i;:::-;10179:25;;10338:1;10270:66;10266:74;10263:1;10260:81;10257:107;;;10344:18;;:::i;:::-;10257:107;10388:1;10385;10381:9;10374:16;;10091:305;;;;:::o;10402:179::-;10542:31;10538:1;10530:6;10526:14;10519:55;10402:179;:::o;10587:366::-;10729:3;10750:67;10814:2;10809:3;10750:67;:::i;:::-;10743:74;;10826:93;10915:3;10826:93;:::i;:::-;10944:2;10939:3;10935:12;10928:19;;10587:366;;;:::o;10959:419::-;11125:4;11163:2;11152:9;11148:18;11140:26;;11212:9;11206:4;11202:20;11198:1;11187:9;11183:17;11176:47;11240:131;11366:4;11240:131;:::i;:::-;11232:139;;10959:419;;;:::o;11384:180::-;11432:77;11429:1;11422:88;11529:4;11526:1;11519:15;11553:4;11550:1;11543:15;11570:320;11614:6;11651:1;11645:4;11641:12;11631:22;;11698:1;11692:4;11688:12;11719:18;11709:81;;11775:4;11767:6;11763:17;11753:27;;11709:81;11837:2;11829:6;11826:14;11806:18;11803:38;11800:84;;11856:18;;:::i;:::-;11800:84;11621:269;11570:320;;;:::o;11896:348::-;11936:7;11959:20;11977:1;11959:20;:::i;:::-;11954:25;;11993:20;12011:1;11993:20;:::i;:::-;11988:25;;12181:1;12113:66;12109:74;12106:1;12103:81;12098:1;12091:9;12084:17;12080:105;12077:131;;;12188:18;;:::i;:::-;12077:131;12236:1;12233;12229:9;12218:20;;11896:348;;;;:::o;12250:180::-;12298:77;12295:1;12288:88;12395:4;12392:1;12385:15;12419:4;12416:1;12409:15;12436:185;12476:1;12493:20;12511:1;12493:20;:::i;:::-;12488:25;;12527:20;12545:1;12527:20;:::i;:::-;12522:25;;12566:1;12556:35;;12571:18;;:::i;:::-;12556:35;12613:1;12610;12606:9;12601:14;;12436:185;;;;:::o;12627:234::-;12767:34;12763:1;12755:6;12751:14;12744:58;12836:17;12831:2;12823:6;12819:15;12812:42;12627:234;:::o;12867:366::-;13009:3;13030:67;13094:2;13089:3;13030:67;:::i;:::-;13023:74;;13106:93;13195:3;13106:93;:::i;:::-;13224:2;13219:3;13215:12;13208:19;;12867:366;;;:::o;13239:419::-;13405:4;13443:2;13432:9;13428:18;13420:26;;13492:9;13486:4;13482:20;13478:1;13467:9;13463:17;13456:47;13520:131;13646:4;13520:131;:::i;:::-;13512:139;;13239:419;;;:::o;13664:227::-;13804:34;13800:1;13792:6;13788:14;13781:58;13873:10;13868:2;13860:6;13856:15;13849:35;13664:227;:::o;13897:366::-;14039:3;14060:67;14124:2;14119:3;14060:67;:::i;:::-;14053:74;;14136:93;14225:3;14136:93;:::i;:::-;14254:2;14249:3;14245:12;14238:19;;13897:366;;;:::o;14269:419::-;14435:4;14473:2;14462:9;14458:18;14450:26;;14522:9;14516:4;14512:20;14508:1;14497:9;14493:17;14486:47;14550:131;14676:4;14550:131;:::i;:::-;14542:139;;14269:419;;;:::o;14694:223::-;14834:34;14830:1;14822:6;14818:14;14811:58;14903:6;14898:2;14890:6;14886:15;14879:31;14694:223;:::o;14923:366::-;15065:3;15086:67;15150:2;15145:3;15086:67;:::i;:::-;15079:74;;15162:93;15251:3;15162:93;:::i;:::-;15280:2;15275:3;15271:12;15264:19;;14923:366;;;:::o;15295:419::-;15461:4;15499:2;15488:9;15484:18;15476:26;;15548:9;15542:4;15538:20;15534:1;15523:9;15519:17;15512:47;15576:131;15702:4;15576:131;:::i;:::-;15568:139;;15295:419;;;:::o;15720:240::-;15860:34;15856:1;15848:6;15844:14;15837:58;15929:23;15924:2;15916:6;15912:15;15905:48;15720:240;:::o;15966:366::-;16108:3;16129:67;16193:2;16188:3;16129:67;:::i;:::-;16122:74;;16205:93;16294:3;16205:93;:::i;:::-;16323:2;16318:3;16314:12;16307:19;;15966:366;;;:::o;16338:419::-;16504:4;16542:2;16531:9;16527:18;16519:26;;16591:9;16585:4;16581:20;16577:1;16566:9;16562:17;16555:47;16619:131;16745:4;16619:131;:::i;:::-;16611:139;;16338:419;;;:::o;16763:239::-;16903:34;16899:1;16891:6;16887:14;16880:58;16972:22;16967:2;16959:6;16955:15;16948:47;16763:239;:::o;17008:366::-;17150:3;17171:67;17235:2;17230:3;17171:67;:::i;:::-;17164:74;;17247:93;17336:3;17247:93;:::i;:::-;17365:2;17360:3;17356:12;17349:19;;17008:366;;;:::o;17380:419::-;17546:4;17584:2;17573:9;17569:18;17561:26;;17633:9;17627:4;17623:20;17619:1;17608:9;17604:17;17597:47;17661:131;17787:4;17661:131;:::i;:::-;17653:139;;17380:419;;;:::o;17805:225::-;17945:34;17941:1;17933:6;17929:14;17922:58;18014:8;18009:2;18001:6;17997:15;17990:33;17805:225;:::o;18036:366::-;18178:3;18199:67;18263:2;18258:3;18199:67;:::i;:::-;18192:74;;18275:93;18364:3;18275:93;:::i;:::-;18393:2;18388:3;18384:12;18377:19;;18036:366;;;:::o;18408:419::-;18574:4;18612:2;18601:9;18597:18;18589:26;;18661:9;18655:4;18651:20;18647:1;18636:9;18632:17;18625:47;18689:131;18815:4;18689:131;:::i;:::-;18681:139;;18408:419;;;:::o;18833:223::-;18973:34;18969:1;18961:6;18957:14;18950:58;19042:6;19037:2;19029:6;19025:15;19018:31;18833:223;:::o;19062:366::-;19204:3;19225:67;19289:2;19284:3;19225:67;:::i;:::-;19218:74;;19301:93;19390:3;19301:93;:::i;:::-;19419:2;19414:3;19410:12;19403:19;;19062:366;;;:::o;19434:419::-;19600:4;19638:2;19627:9;19623:18;19615:26;;19687:9;19681:4;19677:20;19673:1;19662:9;19658:17;19651:47;19715:131;19841:4;19715:131;:::i;:::-;19707:139;;19434:419;;;:::o;19859:221::-;19999:34;19995:1;19987:6;19983:14;19976:58;20068:4;20063:2;20055:6;20051:15;20044:29;19859:221;:::o;20086:366::-;20228:3;20249:67;20313:2;20308:3;20249:67;:::i;:::-;20242:74;;20325:93;20414:3;20325:93;:::i;:::-;20443:2;20438:3;20434:12;20427:19;;20086:366;;;:::o;20458:419::-;20624:4;20662:2;20651:9;20647:18;20639:26;;20711:9;20705:4;20701:20;20697:1;20686:9;20682:17;20675:47;20739:131;20865:4;20739:131;:::i;:::-;20731:139;;20458:419;;;:::o;20883:224::-;21023:34;21019:1;21011:6;21007:14;21000:58;21092:7;21087:2;21079:6;21075:15;21068:32;20883:224;:::o;21113:366::-;21255:3;21276:67;21340:2;21335:3;21276:67;:::i;:::-;21269:74;;21352:93;21441:3;21352:93;:::i;:::-;21470:2;21465:3;21461:12;21454:19;;21113:366;;;:::o;21485:419::-;21651:4;21689:2;21678:9;21674:18;21666:26;;21738:9;21732:4;21728:20;21724:1;21713:9;21709:17;21702:47;21766:131;21892:4;21766:131;:::i;:::-;21758:139;;21485:419;;;:::o;21910:222::-;22050:34;22046:1;22038:6;22034:14;22027:58;22119:5;22114:2;22106:6;22102:15;22095:30;21910:222;:::o;22138:366::-;22280:3;22301:67;22365:2;22360:3;22301:67;:::i;:::-;22294:74;;22377:93;22466:3;22377:93;:::i;:::-;22495:2;22490:3;22486:12;22479:19;;22138:366;;;:::o;22510:419::-;22676:4;22714:2;22703:9;22699:18;22691:26;;22763:9;22757:4;22753:20;22749:1;22738:9;22734:17;22727:47;22791:131;22917:4;22791:131;:::i;:::-;22783:139;;22510:419;;;:::o;22935:172::-;23075:24;23071:1;23063:6;23059:14;23052:48;22935:172;:::o;23113:366::-;23255:3;23276:67;23340:2;23335:3;23276:67;:::i;:::-;23269:74;;23352:93;23441:3;23352:93;:::i;:::-;23470:2;23465:3;23461:12;23454:19;;23113:366;;;:::o;23485:419::-;23651:4;23689:2;23678:9;23674:18;23666:26;;23738:9;23732:4;23728:20;23724:1;23713:9;23709:17;23702:47;23766:131;23892:4;23766:131;:::i;:::-;23758:139;;23485:419;;;:::o;23910:240::-;24050:34;24046:1;24038:6;24034:14;24027:58;24119:23;24114:2;24106:6;24102:15;24095:48;23910:240;:::o;24156:366::-;24298:3;24319:67;24383:2;24378:3;24319:67;:::i;:::-;24312:74;;24395:93;24484:3;24395:93;:::i;:::-;24513:2;24508:3;24504:12;24497:19;;24156:366;;;:::o;24528:419::-;24694:4;24732:2;24721:9;24717:18;24709:26;;24781:9;24775:4;24771:20;24767:1;24756:9;24752:17;24745:47;24809:131;24935:4;24809:131;:::i;:::-;24801:139;;24528:419;;;:::o;24953:169::-;25093:21;25089:1;25081:6;25077:14;25070:45;24953:169;:::o;25128:366::-;25270:3;25291:67;25355:2;25350:3;25291:67;:::i;:::-;25284:74;;25367:93;25456:3;25367:93;:::i;:::-;25485:2;25480:3;25476:12;25469:19;;25128:366;;;:::o;25500:419::-;25666:4;25704:2;25693:9;25689:18;25681:26;;25753:9;25747:4;25743:20;25739:1;25728:9;25724:17;25717:47;25781:131;25907:4;25781:131;:::i;:::-;25773:139;;25500:419;;;:::o;25925:191::-;25965:4;25985:20;26003:1;25985:20;:::i;:::-;25980:25;;26019:20;26037:1;26019:20;:::i;:::-;26014:25;;26058:1;26055;26052:8;26049:34;;;26063:18;;:::i;:::-;26049:34;26108:1;26105;26101:9;26093:17;;25925:191;;;;:::o;26122:225::-;26262:34;26258:1;26250:6;26246:14;26239:58;26331:8;26326:2;26318:6;26314:15;26307:33;26122:225;:::o;26353:366::-;26495:3;26516:67;26580:2;26575:3;26516:67;:::i;:::-;26509:74;;26592:93;26681:3;26592:93;:::i;:::-;26710:2;26705:3;26701:12;26694:19;;26353:366;;;:::o;26725:419::-;26891:4;26929:2;26918:9;26914:18;26906:26;;26978:9;26972:4;26968:20;26964:1;26953:9;26949:17;26942:47;27006:131;27132:4;27006:131;:::i;:::-;26998:139;;26725:419;;;:::o;27150:180::-;27198:77;27195:1;27188:88;27295:4;27292:1;27285:15;27319:4;27316:1;27309:15;27336:180;27384:77;27381:1;27374:88;27481:4;27478:1;27471:15;27505:4;27502:1;27495:15;27522:85;27567:7;27596:5;27585:16;;27522:85;;;:::o;27613:158::-;27671:9;27704:61;27722:42;27731:32;27757:5;27731:32;:::i;:::-;27722:42;:::i;:::-;27704:61;:::i;:::-;27691:74;;27613:158;;;:::o;27777:147::-;27872:45;27911:5;27872:45;:::i;:::-;27867:3;27860:58;27777:147;;:::o;27930:114::-;27997:6;28031:5;28025:12;28015:22;;27930:114;;;:::o;28050:184::-;28149:11;28183:6;28178:3;28171:19;28223:4;28218:3;28214:14;28199:29;;28050:184;;;;:::o;28240:132::-;28307:4;28330:3;28322:11;;28360:4;28355:3;28351:14;28343:22;;28240:132;;;:::o;28378:108::-;28455:24;28473:5;28455:24;:::i;:::-;28450:3;28443:37;28378:108;;:::o;28492:179::-;28561:10;28582:46;28624:3;28616:6;28582:46;:::i;:::-;28660:4;28655:3;28651:14;28637:28;;28492:179;;;;:::o;28677:113::-;28747:4;28779;28774:3;28770:14;28762:22;;28677:113;;;:::o;28826:732::-;28945:3;28974:54;29022:5;28974:54;:::i;:::-;29044:86;29123:6;29118:3;29044:86;:::i;:::-;29037:93;;29154:56;29204:5;29154:56;:::i;:::-;29233:7;29264:1;29249:284;29274:6;29271:1;29268:13;29249:284;;;29350:6;29344:13;29377:63;29436:3;29421:13;29377:63;:::i;:::-;29370:70;;29463:60;29516:6;29463:60;:::i;:::-;29453:70;;29309:224;29296:1;29293;29289:9;29284:14;;29249:284;;;29253:14;29549:3;29542:10;;28950:608;;;28826:732;;;;:::o;29564:831::-;29827:4;29865:3;29854:9;29850:19;29842:27;;29879:71;29947:1;29936:9;29932:17;29923:6;29879:71;:::i;:::-;29960:80;30036:2;30025:9;30021:18;30012:6;29960:80;:::i;:::-;30087:9;30081:4;30077:20;30072:2;30061:9;30057:18;30050:48;30115:108;30218:4;30209:6;30115:108;:::i;:::-;30107:116;;30233:72;30301:2;30290:9;30286:18;30277:6;30233:72;:::i;:::-;30315:73;30383:3;30372:9;30368:19;30359:6;30315:73;:::i;:::-;29564:831;;;;;;;;:::o

Swarm Source

ipfs://3670a7efc80cf8598f2107453235e2687ab0248fd28ec109246195182a3951fa

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.