CRO Price: $0.08 (-6.56%)

Token

CroKing (CRK)

Overview

Max Total Supply

969,990,000,000,000 CRK

Holders

5,749 (0.00%)

Market

Price

$0.00 @ 0.000000 CRO

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Filtered by Token Holder
VVS Finance: Router
Balance
10,991,605.191507525 CRK

Value
$0.00
0x145863eb42cf62847a6ca784e6416c1682b1b2ae
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
CroKingToken

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 999999 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at cronoscan.com on 2022-01-07
*/

// Sources flattened with hardhat v2.6.0 https://hardhat.org

// File @openzeppelin/contracts/utils/[email protected]


pragma solidity >=0.6.0 <0.8.0;

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

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}


// File @openzeppelin/contracts/access/[email protected]


pragma solidity >=0.6.0 <0.8.0;

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () internal {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}


// File @openzeppelin/contracts/math/[email protected]


pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
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) {
        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) {
        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) {
        // 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) {
        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) {
        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) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");
        return c;
    }

    /**
     * @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) {
        require(b <= a, "SafeMath: subtraction overflow");
        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) {
        if (a == 0) return 0;
        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");
        return c;
    }

    /**
     * @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. 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) internal pure returns (uint256) {
        require(b > 0, "SafeMath: division by zero");
        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) {
        require(b > 0, "SafeMath: modulo by zero");
        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) {
        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.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryDiv}.
     *
     * 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) {
        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) {
        require(b > 0, errorMessage);
        return a % b;
    }
}


// File @openzeppelin/contracts/token/ERC20/[email protected]


pragma solidity >=0.6.0 <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);
}


// File @openzeppelin/contracts/token/ERC20/[email protected]


pragma solidity >=0.6.0 <0.8.0;



/**
 * @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 guidelines: functions revert instead
 * of 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 {
    using SafeMath for uint256;

    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @dev Sets the values for {name} and {symbol}, initializes {decimals} with
     * a default value of 18.
     *
     * To select a different value for {decimals}, use {_setupDecimals}.
     *
     * All three of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name_, string memory symbol_) public {
        _name = name_;
        _symbol = symbol_;
        _decimals = 18;
    }

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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual 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 {_setupDecimals} is
     * called.
     *
     * 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 returns (uint8) {
        return _decimals;
    }

    /**
     * @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);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

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

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

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is 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);

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(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:
     *
     * - `to` 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 = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }

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

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

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

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

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

    /**
     * @dev Sets {decimals} to a value other than the default one of 18.
     *
     * WARNING: This function should only be called from the constructor. Most
     * applications that interact with token contracts will not expect
     * {decimals} to ever change, and may work incorrectly if it does.
     */
    function _setupDecimals(uint8 decimals_) internal virtual {
        _decimals = decimals_;
    }

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


// File contracts/interfaces/IUniswapV2Router01.sol


pragma solidity 0.6.12;

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

    function WETH() external pure returns (address);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// File contracts/interfaces/IUniswapV2Router02.sol


pragma solidity 0.6.12;

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

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

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

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

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


// File contracts/interfaces/IUniswapV2Factory.sol


pragma solidity 0.6.12;

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}


// File contracts/interfaces/IWETH.sol


pragma solidity 0.6.12;

interface IWETH {
    function deposit() external payable;

    function withdraw(uint256 wad) external;
}


// File contracts/lib/SafeMathInt.sol


pragma solidity 0.6.12;

library SafeMathInt {
    int256 private constant MIN_INT256 = int256(1) << 255;
    int256 private constant MAX_INT256 = ~(int256(1) << 255);

    /**
     * @dev Multiplies two int256 variables and fails on overflow.
     */
    function mul(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a * b;

        // Detect overflow when multiplying MIN_INT256 with -1
        require(c != MIN_INT256 || (a & MIN_INT256) != (b & MIN_INT256));
        require((b == 0) || (c / b == a));
        return c;
    }

    /**
     * @dev Division of two int256 variables and fails on overflow.
     */
    function div(int256 a, int256 b) internal pure returns (int256) {
        // Prevent overflow when dividing MIN_INT256 by -1
        require(b != -1 || a != MIN_INT256);

        // Solidity already throws when dividing by 0.
        return a / b;
    }

    /**
     * @dev Subtracts two int256 variables and fails on overflow.
     */
    function sub(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a - b;
        require((b >= 0 && c <= a) || (b < 0 && c > a));
        return c;
    }

    /**
     * @dev Adds two int256 variables and fails on overflow.
     */
    function add(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a + b;
        require((b >= 0 && c >= a) || (b < 0 && c < a));
        return c;
    }

    /**
     * @dev Converts to absolute value, and fails on overflow.
     */
    function abs(int256 a) internal pure returns (int256) {
        require(a != MIN_INT256);
        return a < 0 ? -a : a;
    }

    function toUint256Safe(int256 a) internal pure returns (uint256) {
        require(a >= 0);
        return uint256(a);
    }
}


// File contracts/lib/SafeMathUint.sol


pragma solidity 0.6.12;

library SafeMathUint {
    function toInt256Safe(uint256 a) internal pure returns (int256) {
        int256 b = int256(a);
        require(b >= 0);
        return b;
    }
}


// File contracts/interfaces/DividendPayingTokenInterface.sol


pragma solidity 0.6.12;

interface DividendPayingTokenInterface {
    /// @notice View the amount of dividend in wei that an address can withdraw.
    /// @param _owner The address of a token holder.
    /// @return The amount of dividend in wei that `_owner` can withdraw.
    function dividendOf(address _owner) external view returns (uint256);

    /// @notice Withdraws the ether distributed to the sender.
    /// @dev SHOULD transfer `dividendOf(msg.sender)` wei to `msg.sender`, and `dividendOf(msg.sender)` SHOULD be 0 after the transfer.
    ///  MUST emit a `DividendWithdrawn` event if the amount of ether transferred is greater than 0.
    function withdrawDividend() external;

    /// @dev This event MUST emit when ether is distributed to token holders.
    /// @param from The address which sends ether to this contract.
    /// @param weiAmount The amount of distributed ether in wei.
    event DividendsDistributed(address indexed from, uint256 weiAmount);

    /// @dev This event MUST emit when an address withdraws their dividend.
    /// @param to The address which withdraws ether from this contract.
    /// @param weiAmount The amount of withdrawn ether in wei.
    event DividendWithdrawn(address indexed to, uint256 weiAmount);
}


// File contracts/interfaces/DividendPayingTokenOptionalInterface.sol


pragma solidity 0.6.12;

interface DividendPayingTokenOptionalInterface {
    /// @notice View the amount of dividend in wei that an address can withdraw.
    /// @param _owner The address of a token holder.
    /// @return The amount of dividend in wei that `_owner` can withdraw.
    function withdrawableDividendOf(address _owner) external view returns (uint256);

    /// @notice View the amount of dividend in wei that an address has withdrawn.
    /// @param _owner The address of a token holder.
    /// @return The amount of dividend in wei that `_owner` has withdrawn.
    function withdrawnDividendOf(address _owner) external view returns (uint256);

    /// @notice View the amount of dividend in wei that an address has earned in total.
    /// @dev accumulativeDividendOf(_owner) = withdrawableDividendOf(_owner) + withdrawnDividendOf(_owner)
    /// @param _owner The address of a token holder.
    /// @return The amount of dividend in wei that `_owner` has earned in total.
    function accumulativeDividendOf(address _owner) external view returns (uint256);
}


// File contracts/DividendPayingToken.sol


pragma solidity 0.6.12;





contract DividendPayingToken is
    ERC20,
    Ownable,
    DividendPayingTokenInterface,
    DividendPayingTokenOptionalInterface
{
    using SafeMath for uint256;
    using SafeMathUint for uint256;
    using SafeMathInt for int256;

    address public immutable WBNB;

    uint256 internal constant magnitude = 2**128;

    uint256 internal magnifiedDividendPerShare;

    mapping(address => int256) internal magnifiedDividendCorrections;
    mapping(address => uint256) internal withdrawnDividends;

    uint256 public totalDividendsDistributed;

    constructor(
        string memory _name,
        string memory _symbol,
        address _wbnb
    ) public ERC20(_name, _symbol) {
        WBNB = _wbnb;
    }

    function distributeDividends(uint256 amount) public onlyOwner {
        uint256 _totalSupply = totalSupply();
        require(_totalSupply > 0, "zero total supply");

        if (amount > 0) {
            magnifiedDividendPerShare = magnifiedDividendPerShare.add(
                (amount).mul(magnitude) / _totalSupply
            );
            emit DividendsDistributed(msg.sender, amount);

            totalDividendsDistributed = totalDividendsDistributed.add(amount);
        }
    }

    /// @notice Withdraws the ether distributed to the sender.
    /// @dev It emits a `DividendWithdrawn` event if the amount of withdrawn ether is greater than 0.
    function withdrawDividend() public virtual override {
        _withdrawDividendOfUser(msg.sender);
    }

    /// @notice Withdraws the ether distributed to the sender.
    /// @dev It emits a `DividendWithdrawn` event if the amount of withdrawn ether is greater than 0.
    function _withdrawDividendOfUser(address payable user) internal returns (uint256) {
        uint256 _withdrawableDividend = withdrawableDividendOf(user);
        if (_withdrawableDividend > 0) {
            withdrawnDividends[user] = withdrawnDividends[user].add(_withdrawableDividend);
            emit DividendWithdrawn(user, _withdrawableDividend);
            IERC20(WBNB).transfer(user, _withdrawableDividend);

            return _withdrawableDividend;
        }

        return 0;
    }

    /// @notice View the amount of dividend in wei that an address can withdraw.
    /// @param _owner The address of a token holder.
    /// @return The amount of dividend in wei that `_owner` can withdraw.
    function dividendOf(address _owner) public view override returns (uint256) {
        return withdrawableDividendOf(_owner);
    }

    /// @notice View the amount of dividend in wei that an address can withdraw.
    /// @param _owner The address of a token holder.
    /// @return The amount of dividend in wei that `_owner` can withdraw.
    function withdrawableDividendOf(address _owner) public view override returns (uint256) {
        return accumulativeDividendOf(_owner).sub(withdrawnDividends[_owner]);
    }

    /// @notice View the amount of dividend in wei that an address has withdrawn.
    /// @param _owner The address of a token holder.
    /// @return The amount of dividend in wei that `_owner` has withdrawn.
    function withdrawnDividendOf(address _owner) public view override returns (uint256) {
        return withdrawnDividends[_owner];
    }

    /// @notice View the amount of dividend in wei that an address has earned in total.
    /// @dev accumulativeDividendOf(_owner) = withdrawableDividendOf(_owner) + withdrawnDividendOf(_owner)
    /// = (magnifiedDividendPerShare * balanceOf(_owner) + magnifiedDividendCorrections[_owner]) / magnitude
    /// @param _owner The address of a token holder.
    /// @return The amount of dividend in wei that `_owner` has earned in total.
    function accumulativeDividendOf(address _owner) public view override returns (uint256) {
        return
            magnifiedDividendPerShare
                .mul(balanceOf(_owner))
                .toInt256Safe()
                .add(magnifiedDividendCorrections[_owner])
                .toUint256Safe() / magnitude;
    }

    /// @dev Internal function that transfer tokens from one address to another.
    /// Update magnifiedDividendCorrections to keep dividends unchanged.
    /// @param from The address to transfer from.
    /// @param to The address to transfer to.
    /// @param value The amount to be transferred.
    function _transfer(
        address from,
        address to,
        uint256 value
    ) internal virtual override {
        require(false);

        int256 _magCorrection = magnifiedDividendPerShare.mul(value).toInt256Safe();
        magnifiedDividendCorrections[from] = magnifiedDividendCorrections[from].add(_magCorrection);
        magnifiedDividendCorrections[to] = magnifiedDividendCorrections[to].sub(_magCorrection);
    }

    /// @dev Internal function that mints tokens to an account.
    /// Update magnifiedDividendCorrections to keep dividends unchanged.
    /// @param account The account that will receive the created tokens.
    /// @param value The amount that will be created.
    function _mint(address account, uint256 value) internal override {
        super._mint(account, value);

        magnifiedDividendCorrections[account] = magnifiedDividendCorrections[account].sub(
            (magnifiedDividendPerShare.mul(value)).toInt256Safe()
        );
    }

    /// @dev Internal function that burns an amount of the token of a given account.
    /// Update magnifiedDividendCorrections to keep dividends unchanged.
    /// @param account The account whose tokens will be burnt.
    /// @param value The amount that will be burnt.
    function _burn(address account, uint256 value) internal override {
        super._burn(account, value);

        magnifiedDividendCorrections[account] = magnifiedDividendCorrections[account].add(
            (magnifiedDividendPerShare.mul(value)).toInt256Safe()
        );
    }

    function _setBalance(address account, uint256 newBalance) internal {
        uint256 currentBalance = balanceOf(account);

        if (newBalance > currentBalance) {
            uint256 mintAmount = newBalance.sub(currentBalance);
            _mint(account, mintAmount);
        } else if (newBalance < currentBalance) {
            uint256 burnAmount = currentBalance.sub(newBalance);
            _burn(account, burnAmount);
        }
    }
}


// File contracts/lib/IterableMapping.sol


pragma solidity 0.6.12;

library IterableMapping {
    // Iterable mapping from address to uint;
    struct Map {
        address[] keys;
        mapping(address => uint256) values;
        mapping(address => uint256) indexOf;
        mapping(address => bool) inserted;
    }

    function get(Map storage map, address key) internal view returns (uint256) {
        return map.values[key];
    }

    function getIndexOfKey(Map storage map, address key) internal view returns (int256) {
        if (!map.inserted[key]) {
            return -1;
        }
        return int256(map.indexOf[key]);
    }

    function getKeyAtIndex(Map storage map, uint256 index) internal view returns (address) {
        return map.keys[index];
    }

    function size(Map storage map) internal view returns (uint256) {
        return map.keys.length;
    }

    function set(
        Map storage map,
        address key,
        uint256 val
    ) internal {
        if (map.inserted[key]) {
            map.values[key] = val;
        } else {
            map.inserted[key] = true;
            map.values[key] = val;
            map.indexOf[key] = map.keys.length;
            map.keys.push(key);
        }
    }

    function remove(Map storage map, address key) internal {
        if (!map.inserted[key]) {
            return;
        }

        delete map.inserted[key];
        delete map.values[key];

        uint256 index = map.indexOf[key];
        uint256 lastIndex = map.keys.length - 1;
        address lastKey = map.keys[lastIndex];

        map.indexOf[lastKey] = index;
        delete map.indexOf[key];

        map.keys[index] = lastKey;
        map.keys.pop();
    }
}


// File contracts/DividendTracker.sol


pragma solidity 0.6.12;

contract DividendTracker is Ownable, DividendPayingToken {
    using SafeMath for uint256;
    using SafeMathInt for int256;
    using IterableMapping for IterableMapping.Map;

    IterableMapping.Map private tokenHoldersMap;
    uint256 public lastProcessedIndex;

    mapping(address => bool) public excludedFromDividends;

    mapping(address => uint256) public lastClaimTimes;

    uint256 public claimWait;
    uint256 public immutable minimumTokenBalanceForDividends;

    event ExcludeFromDividends(address indexed account);
    event ClaimWaitUpdated(uint256 indexed newValue, uint256 indexed oldValue);

    event Claim(address indexed account, uint256 amount, bool indexed automatic);

    constructor(address _wbnb)
        public
        DividendPayingToken("DividendTracker", "DividendTracker", _wbnb)
    {
        claimWait = 3600;
        minimumTokenBalanceForDividends = 7_500_000_000 * (10**9); //must hold 350M+ tokens
    }

    function _transfer(
        address,
        address,
        uint256
    ) internal override {
        require(false, "No transfers allowed");
    }

    function withdrawDividend() public override {
        require(
            false,
            "withdrawDividend disabled. Use the 'claim'"
        );
    }

    function excludeFromDividends(address account) external onlyOwner {
        require(!excludedFromDividends[account]);
        excludedFromDividends[account] = true;

        _setBalance(account, 0);
        tokenHoldersMap.remove(account);

        emit ExcludeFromDividends(account);
    }

    function updateClaimWait(uint256 newClaimWait) external onlyOwner {
        require(
            newClaimWait >= 3600 && newClaimWait <= 86400,
            "must be between 1 and 24 hours"
        );
        uint256 _oldClaimWait = claimWait;
        require(
            newClaimWait != _oldClaimWait,
            "same value"
        );
        emit ClaimWaitUpdated(newClaimWait, _oldClaimWait);
        claimWait = newClaimWait;
    }

    function getLastProcessedIndex() external view returns (uint256) {
        return lastProcessedIndex;
    }

    function getNumberOfTokenHolders() external view returns (uint256) {
        return tokenHoldersMap.keys.length;
    }

    function getAccount(address _account)
        public
        view
        returns (
            address account,
            int256 index,
            int256 iterationsUntilProcessed,
            uint256 withdrawableDividends,
            uint256 totalDividends,
            uint256 lastClaimTime,
            uint256 nextClaimTime,
            uint256 secondsUntilAutoClaimAvailable
        )
    {
        account = _account;

        index = tokenHoldersMap.getIndexOfKey(account);

        iterationsUntilProcessed = -1;

        if (index >= 0) {
            uint256 _lastProcessedIndex = lastProcessedIndex;
            if (uint256(index) > _lastProcessedIndex) {
                iterationsUntilProcessed = index.sub(int256(_lastProcessedIndex));
            } else {
                uint256 len = tokenHoldersMap.keys.length;
                uint256 processesUntilEndOfArray = len > _lastProcessedIndex
                    ? len.sub(_lastProcessedIndex)
                    : 0;

                iterationsUntilProcessed = index.add(int256(processesUntilEndOfArray));
            }
        }

        withdrawableDividends = withdrawableDividendOf(account);
        totalDividends = accumulativeDividendOf(account);

        lastClaimTime = lastClaimTimes[account];

        nextClaimTime = lastClaimTime > 0 ? lastClaimTime.add(claimWait) : 0;

        secondsUntilAutoClaimAvailable = nextClaimTime > block.timestamp
            ? nextClaimTime.sub(block.timestamp)
            : 0;
    }

    function getAccountAtIndex(uint256 index)
        public
        view
        returns (
            address,
            int256,
            int256,
            uint256,
            uint256,
            uint256,
            uint256,
            uint256
        )
    {
        if (index >= tokenHoldersMap.size()) {
            return (address(0), -1, -1, 0, 0, 0, 0, 0);
        }

        address account = tokenHoldersMap.getKeyAtIndex(index);

        return getAccount(account);
    }

    function canAutoClaim(uint256 lastClaimTime, uint256 _claimWait) private view returns (bool) {
        if (lastClaimTime > block.timestamp) {
            return false;
        }

        return block.timestamp.sub(lastClaimTime) >= _claimWait;
    }

    function setBalance(address payable account, uint256 newBalance) external onlyOwner {
        if (excludedFromDividends[account]) {
            return;
        }

        if (newBalance >= minimumTokenBalanceForDividends) {
            _setBalance(account, newBalance);
            tokenHoldersMap.set(account, newBalance);
        } else {
            _setBalance(account, 0);
            tokenHoldersMap.remove(account);
        }

        processAccount(account, true);
    }

    function process(uint256 gas)
        public
        returns (
            uint256,
            uint256,
            uint256
        )
    {
        uint256 numberOfTokenHolders = tokenHoldersMap.keys.length;

        if (numberOfTokenHolders == 0) {
            return (0, 0, lastProcessedIndex);
        }

        uint256 _lastProcessedIndex = lastProcessedIndex;

        uint256 gasUsed = 0;

        uint256 gasLeft = gasleft();

        uint256 iterations = 0;
        uint256 claims = 0;

        uint256 _claimWait = claimWait;

        while (gasUsed < gas && iterations < numberOfTokenHolders) {
            _lastProcessedIndex++;

            if (_lastProcessedIndex >= numberOfTokenHolders) {
                _lastProcessedIndex = 0;
            }

            address account = tokenHoldersMap.keys[_lastProcessedIndex];

            if (canAutoClaim(lastClaimTimes[account], _claimWait)) {
                if (processAccount(payable(account), true)) {
                    claims++;
                }
            }

            iterations++;

            uint256 newGasLeft = gasleft();

            if (gasLeft > newGasLeft) {
                gasUsed = gasUsed.add(gasLeft.sub(newGasLeft));
            }

            gasLeft = newGasLeft;
        }

        lastProcessedIndex = _lastProcessedIndex;

        return (iterations, claims, _lastProcessedIndex);
    }

    function processAccount(address payable account, bool automatic)
        public
        onlyOwner
        returns (bool)
    {
        uint256 amount = _withdrawDividendOfUser(account);

        if (amount > 0) {
            lastClaimTimes[account] = block.timestamp;
            emit Claim(account, amount, automatic);
            return true;
        }

        return false;
    }
}


// File contracts/CroKingToken.sol

// SPDX-License-Identifier: UNLICENSED

pragma solidity 0.6.12;






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

    IUniswapV2Router02 public uniswapV2Router;
    address public wbnb;
    address public uniswapV2Pair;

    bool private swapping;

    DividendTracker public dividendTracker;

    address public constant deadWallet = 0x000000000000000000000000000000000000dEaD;

    uint256 public swapTokensAtAmount = 2000000 * (10**9);

    mapping(address => bool) public _isBlacklisted;
    mapping(address => bool) public _isWhitelisted;

    uint256 public bnbRewardsFee = 5;
    uint256 public liquidityFee = 5;
    uint256 public marketingFee = 2;
    uint256 public totalFees =
        bnbRewardsFee.add(liquidityFee).add(marketingFee);

    bool private tradingOpen = false;

    address public _marketingWalletAddress;

    // use by default 300,000 gas to process auto-claiming dividends
    uint256 public gasForProcessing = 300000;

    uint256 public maxWalletBalance;    

    bool public initialized = false;

    mapping(address => bool) public excludedFromMaxBalance;

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

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

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

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

    event ExcludeFromFees(address indexed account, bool isExcluded);
    event ExcludeMultipleAccountsFromFees(address[] accounts, bool isExcluded);

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

    event LiquidityWalletUpdated(
        address indexed newLiquidityWallet,
        address indexed oldLiquidityWallet
    );

    event GasForProcessingUpdated(uint256 indexed newValue, uint256 indexed oldValue);

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

    event SendDividends(uint256 tokensSwapped, uint256 amount);

    event ProcessedDividendTracker(
        uint256 iterations,
        uint256 claims,
        uint256 lastProcessedIndex,
        bool indexed automatic,
        uint256 gas,
        address indexed processor
    );

    event FeesChanged(
        uint256 bnbRewardsFee,
        uint256 liquidityFee,
        uint256 marketingFee
    );

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

    event BlacklistAddress(address indexed user, bool value);
    event WhitelistAddress(address indexed user, bool value);
    event Error(bytes data);

    event ExcludedFromMaxBalance(address indexed account, bool excluded);
    event MaxWalletBalanceUpdated(uint256 percent);
    event SwapTokensAtAmountUpdated(uint256 amount);

    constructor(
        string memory name, 
        string memory symbol,
        address marketingWalletAddress,
        IUniswapV2Router02 _uniswapV2Router
    ) public ERC20(name, symbol) {
        wbnb = _uniswapV2Router.WETH();
        uniswapV2Router = _uniswapV2Router;
        // Create a uniswap pair for this new token
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(
            address(this),
            wbnb
        );
        _marketingWalletAddress = marketingWalletAddress;
    }

    function initialize(address dividendTrackerAddress) external onlyOwner {
        require(!initialized, "initialized");
        initialized = true;
        DividendTracker _dividendTracker = DividendTracker(dividendTrackerAddress);
        dividendTracker = _dividendTracker;

        address _uniswapV2Pair = uniswapV2Pair;

        _setAutomatedMarketMakerPair(_uniswapV2Pair, true);

        address _owner = owner();

        // exclude from receiving dividends
        _dividendTracker.excludeFromDividends(address(_dividendTracker));
        _dividendTracker.excludeFromDividends(address(this));
        _dividendTracker.excludeFromDividends(_owner);
        _dividendTracker.excludeFromDividends(deadWallet);
        _dividendTracker.excludeFromDividends(address(uniswapV2Router));

        // exclude from paying fees or having max transaction amount
        excludeFromFees(_owner, true);
        excludeFromFees(_marketingWalletAddress, true);
        excludeFromFees(address(this), true);

        excludedFromMaxBalance[_uniswapV2Pair] = true;
        excludedFromMaxBalance[address(this)] = true;
        excludedFromMaxBalance[_marketingWalletAddress] = true;

        emit MarketingWalletChanged(address(0), _marketingWalletAddress);

        _isWhitelisted[msg.sender] = true;
        _setupDecimals(9);

        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(_owner, 1_000_000_000_000_000 * (10**9));

        maxWalletBalance = totalSupply() * 2 / 100;
    }

    receive() external payable {}

    function updateDividendTracker(address newAddress) public onlyOwner {
        require(
            newAddress != address(dividendTracker),
            "The dividend tracker already has that address"
        );

        DividendTracker newDividendTracker = DividendTracker(payable(newAddress));

        require(
            newDividendTracker.owner() == address(this),
            "The new dividend tracker must be owned by the token contract"
        );

        newDividendTracker.excludeFromDividends(address(newDividendTracker));
        newDividendTracker.excludeFromDividends(address(this));
        newDividendTracker.excludeFromDividends(owner());
        newDividendTracker.excludeFromDividends(address(uniswapV2Router));

        emit UpdateDividendTracker(newAddress, address(dividendTracker));

        dividendTracker = newDividendTracker;
    }

    function updateUniswapV2Router(address newAddress) public onlyOwner {
        address _oldUniswapV2Router = address(uniswapV2Router);
        require(newAddress != _oldUniswapV2Router, "The router already has that address");
        emit UpdateUniswapV2Router(newAddress, _oldUniswapV2Router);
        uniswapV2Router = IUniswapV2Router02(newAddress);
        address _wbnb = IUniswapV2Router02(newAddress).WETH();
        wbnb = _wbnb;
        address _uniswapV2Pair = IUniswapV2Factory(IUniswapV2Router02(newAddress).factory())
            .createPair(address(this), _wbnb);
        uniswapV2Pair = _uniswapV2Pair;
    }

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        require(
            _isExcludedFromFees[account] != excluded,
            "Account is already the value of 'excluded'"
        );
        _isExcludedFromFees[account] = excluded;

        emit ExcludeFromFees(account, excluded);
    }

    function excludeMultipleAccountsFromFees(address[] memory accounts, bool excluded)
        public
        onlyOwner
    {
        for (uint256 i = 0; i < accounts.length; i++) {
            _isExcludedFromFees[accounts[i]] = excluded;
        }

        emit ExcludeMultipleAccountsFromFees(accounts, excluded);
    }

    function setMarketingWallet(address payable wallet) external onlyOwner {
        emit MarketingWalletChanged(_marketingWalletAddress, wallet);
        _marketingWalletAddress = wallet;
    }


    function setFees(
        uint256 _bnbRewardsFee,
        uint256 _liquidityFee,
        uint256 _marketingFee
    ) external onlyOwner {
        require(
            _bnbRewardsFee + _liquidityFee + _marketingFee <= 20,
            "CRK: Too high fees"
        );

        bnbRewardsFee = _bnbRewardsFee;
        liquidityFee = _liquidityFee;
        marketingFee = _marketingFee;
        totalFees = _bnbRewardsFee.add(_liquidityFee).add(_marketingFee);

        emit FeesChanged(_bnbRewardsFee, _liquidityFee, _marketingFee);
    }

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

        _setAutomatedMarketMakerPair(pair, value);
    }

    function blacklistAddress(address account, bool value) external onlyOwner {
        _isBlacklisted[account] = value;
        emit BlacklistAddress(account, value);
    }

    function whitelistAddress(address account, bool value) external onlyOwner {
        _isWhitelisted[account] = value;
        emit WhitelistAddress(account, value);
    }

    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        require(
            automatedMarketMakerPairs[pair] != value,
            "Already set to that value"
        );
        automatedMarketMakerPairs[pair] = value;

        if (value) {
            dividendTracker.excludeFromDividends(pair);
        }

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function updateGasForProcessing(uint256 newValue) public onlyOwner {
        require(
            newValue >= 200000 && newValue <= 500000,
            "wrong gasForProcessing value"
        );
        require(
            newValue != gasForProcessing,
            "same value"
        );
        emit GasForProcessingUpdated(newValue, gasForProcessing);
        gasForProcessing = newValue;
    }

    function updateClaimWait(uint256 claimWait) external onlyOwner {
        dividendTracker.updateClaimWait(claimWait);
    }

    function getClaimWait() external view returns (uint256) {
        return dividendTracker.claimWait();
    }

    function getTotalDividendsDistributed() external view returns (uint256) {
        return dividendTracker.totalDividendsDistributed();
    }

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

    function withdrawableDividendOf(address account) public view returns (uint256) {
        return dividendTracker.withdrawableDividendOf(account);
    }

    function dividendTokenBalanceOf(address account) public view returns (uint256) {
        return dividendTracker.balanceOf(account);
    }

    function excludeFromDividends(address account) external onlyOwner {
        dividendTracker.excludeFromDividends(account);
    }

    function getAccountDividendsInfo(address account)
        external
        view
        returns (
            address,
            int256,
            int256,
            uint256,
            uint256,
            uint256,
            uint256,
            uint256
        )
    {
        return dividendTracker.getAccount(account);
    }

    function getAccountDividendsInfoAtIndex(uint256 index)
        external
        view
        returns (
            address,
            int256,
            int256,
            uint256,
            uint256,
            uint256,
            uint256,
            uint256
        )
    {
        return dividendTracker.getAccountAtIndex(index);
    }

    function processDividendTracker(uint256 gas) external {
        (uint256 iterations, uint256 claims, uint256 lastProcessedIndex) = dividendTracker.process(
            gas
        );
        emit ProcessedDividendTracker(
            iterations,
            claims,
            lastProcessedIndex,
            false,
            gas,
            tx.origin
        );
    }

    function claim() external {
        dividendTracker.processAccount(msg.sender, false);
    }

    function getLastProcessedIndex() external view returns (uint256) {
        return dividendTracker.getLastProcessedIndex();
    }

    function getNumberOfDividendTokenHolders() external view returns (uint256) {
        return dividendTracker.getNumberOfTokenHolders();
    }

    function openTrading() public onlyOwner {
        tradingOpen = true;
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "transfer from the zero address");
        require(to != address(0), "transfer to the zero address");
        require(!_isBlacklisted[from] && !_isBlacklisted[to], "Blacklisted");

        if (!_isWhitelisted[from] && !_isWhitelisted[to]) {
            require(tradingOpen, "no tranding");
        }

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

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        address _owner = owner();
        bool _swapping = swapping;
        uint256 _totalFees = totalFees;
        if (
            canSwap &&
            !_swapping &&
            !automatedMarketMakerPairs[from] &&
            from != _owner &&
            to != _owner
        ) {
            swapping = true;

            uint256 marketingTokens = contractTokenBalance.mul(marketingFee).div(_totalFees);
            swapAndSendToFee(marketingTokens, _marketingWalletAddress);

            uint256 swapTokens = contractTokenBalance.mul(liquidityFee).div(_totalFees);
            swapAndLiquify(swapTokens);

            uint256 sellTokens = balanceOf(address(this));
            swapAndSendDividends(sellTokens);

            swapping = false;
        }

        bool takeFee = !swapping;

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

        if (takeFee) {
            uint256 fees = amount.mul(_totalFees).div(100);
            if (automatedMarketMakerPairs[to]) {
                fees += amount.mul(3).div(100);
            }
            amount = amount.sub(fees);

            super._transfer(from, address(this), fees);
        }

        super._transfer(from, to, amount);
        if(!excludedFromMaxBalance[to]) {
            require(balanceOf(to) <= maxWalletBalance, "max wallet balance exceeded");
        }

        DividendTracker _dividendTracker = dividendTracker;
        _dividendTracker.setBalance(payable(from), balanceOf(from));
        _dividendTracker.setBalance(payable(to), balanceOf(to));

        require(gasleft() >= gasForProcessing + 100000, "insufficient gas");

        if (!_swapping) {
            uint256 gas = gasForProcessing;

            try _dividendTracker.process(gas) returns (
                uint256 iterations,
                uint256 claims,
                uint256 lastProcessedIndex
            ) {
                emit ProcessedDividendTracker(
                    iterations,
                    claims,
                    lastProcessedIndex,
                    true,
                    gas,
                    tx.origin
                );
            } catch (bytes memory data) {
                emit Error(data);
            }
        }
    }

    function swapAndSendToFee(uint256 tokens, address dest) private {
        address _wbnb = wbnb;
        uint256 initialBnbBalance = address(this).balance;

        swapTokensForEth(tokens);

        uint256 dividends = address(this).balance.sub(initialBnbBalance);
        IWETH(_wbnb).deposit{value: dividends}();
        IERC20(_wbnb).transfer(dest, dividends);
    }

    function swapAndLiquify(uint256 tokens) private {
        // split the contract balance into halves
        uint256 half = tokens.div(2);
        uint256 otherHalf = tokens.sub(half);

        // capture the contract's current ETH balance.
        // this is so that we can capture exactly the amount of ETH that the
        // swap creates, and not make the liquidity event include any ETH that
        // has been manually sent to the contract
        uint256 initialBalance = address(this).balance;

        // swap tokens for ETH
        swapTokensForEth(half); // <- this breaks the ETH -> HATE swap when swap+liquify is triggered

        // how much ETH did we just swap into?
        uint256 newBalance = address(this).balance.sub(initialBalance);

        // add liquidity to uniswap
        addLiquidity(otherHalf, newBalance);

        emit SwapAndLiquify(half, newBalance, otherHalf);
    }

    function swapTokensForEth(uint256 tokenAmount) private {
        IUniswapV2Router02 _uniswapV2Router = uniswapV2Router;

        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = wbnb;

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

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

    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        IUniswapV2Router02 _uniswapV2Router = uniswapV2Router;

        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(_uniswapV2Router), tokenAmount);

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

    function swapAndSendDividends(uint256 tokens) private {
        swapTokensForEth(tokens);

        address _wbnb = wbnb;
        DividendTracker _dividendTracker = dividendTracker;

        uint256 dividends = address(this).balance;
        try _dividendTracker.distributeDividends(dividends) {
            IWETH(_wbnb).deposit{value: dividends}();

            IERC20(_wbnb).transfer(address(_dividendTracker), dividends);
            emit SendDividends(tokens, dividends);
        } catch(bytes memory data) {
            emit Error(data);
        }

    }

    function burn(uint256 amount) external {
        _burn(msg.sender, amount);
        try dividendTracker.setBalance(payable(msg.sender), balanceOf(msg.sender)) {} catch {}
    }

    function setMaxWalletBalancePercent(uint256 percent) external onlyOwner {
        require(percent >= 2, "min 2%");
        require(percent <= 100, "max 100%");
        maxWalletBalance = totalSupply() * percent / 100;
        emit MaxWalletBalanceUpdated(percent);
    }

    function setExcludedFromMaxBalance(address account, bool excluded) external onlyOwner {
        excludedFromMaxBalance[account] = excluded;
        emit ExcludedFromMaxBalance(account, excluded);
    }

    function setSwapTokensAtAmount(uint256 newSwapTokensAtAmount) external onlyOwner {
        require(newSwapTokensAtAmount >= 100000 * (10**9), "too small value");
        swapTokensAtAmount = newSwapTokensAtAmount;
        emit SwapTokensAtAmountUpdated(newSwapTokensAtAmount);
    }

}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"address","name":"marketingWalletAddress","type":"address"},{"internalType":"contract IUniswapV2Router02","name":"_uniswapV2Router","type":"address"}],"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":"user","type":"address"},{"indexed":false,"internalType":"bool","name":"value","type":"bool"}],"name":"BlacklistAddress","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bytes","name":"data","type":"bytes"}],"name":"Error","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":false,"internalType":"address[]","name":"accounts","type":"address[]"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeMultipleAccountsFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"excluded","type":"bool"}],"name":"ExcludedFromMaxBalance","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"bnbRewardsFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"liquidityFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"marketingFee","type":"uint256"}],"name":"FeesChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"newValue","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"oldValue","type":"uint256"}],"name":"GasForProcessingUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newLiquidityWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldLiquidityWallet","type":"address"}],"name":"LiquidityWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"},{"indexed":true,"internalType":"address","name":"newWallet","type":"address"}],"name":"MarketingWalletChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"percent","type":"uint256"}],"name":"MaxWalletBalanceUpdated","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":false,"internalType":"uint256","name":"iterations","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"claims","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"lastProcessedIndex","type":"uint256"},{"indexed":true,"internalType":"bool","name":"automatic","type":"bool"},{"indexed":false,"internalType":"uint256","name":"gas","type":"uint256"},{"indexed":true,"internalType":"address","name":"processor","type":"address"}],"name":"ProcessedDividendTracker","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SendDividends","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SwapTokensAtAmountUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateDividendTracker","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"bool","name":"value","type":"bool"}],"name":"WhitelistAddress","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_marketingWalletAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"blacklistAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"bnbRewardsFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"deadWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"dividendTokenBalanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dividendTracker","outputs":[{"internalType":"contract DividendTracker","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromDividends","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":"accounts","type":"address[]"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeMultipleAccountsFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"excludedFromMaxBalance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"gasForProcessing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getAccountDividendsInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"int256","name":"","type":"int256"},{"internalType":"int256","name":"","type":"int256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getAccountDividendsInfoAtIndex","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"int256","name":"","type":"int256"},{"internalType":"int256","name":"","type":"int256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getClaimWait","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getLastProcessedIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getNumberOfDividendTokenHolders","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalDividendsDistributed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"dividendTrackerAddress","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"initialized","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletBalance","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":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"gas","type":"uint256"}],"name":"processDividendTracker","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"setExcludedFromMaxBalance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_bnbRewardsFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_marketingFee","type":"uint256"}],"name":"setFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"wallet","type":"address"}],"name":"setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"setMaxWalletBalancePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSwapTokensAtAmount","type":"uint256"}],"name":"setSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","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":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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":"claimWait","type":"uint256"}],"name":"updateClaimWait","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"updateDividendTracker","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newValue","type":"uint256"}],"name":"updateGasForProcessing","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"updateUniswapV2Router","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"wbnb","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"whitelistAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"withdrawableDividendOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

608060405266071afd498d0000600a556005600d556005600e556002600f5562000057600f5462000043600e54600d546200048360201b62003fb01790919060201c565b6200048360201b62003fb01790919060201c565b6010556011805460ff19908116909155620493e06012556014805490911690553480156200008457600080fd5b50604051620062e8380380620062e883398181016040526080811015620000aa57600080fd5b8101908080516040519392919084640100000000821115620000cb57600080fd5b908301906020820185811115620000e157600080fd5b8251640100000000811182820188101715620000fc57600080fd5b82525081516020918201929091019080838360005b838110156200012b57818101518382015260200162000111565b50505050905090810190601f168015620001595780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200017d57600080fd5b9083019060208201858111156200019357600080fd5b8251640100000000811182820188101715620001ae57600080fd5b82525081516020918201929091019080838360005b83811015620001dd578181015183820152602001620001c3565b50505050905090810190601f1680156200020b5780820380516001836020036101000a031916815260200191505b506040908152602082810151929091015186519294509250859185916200023891600391850190620004e9565b5080516200024e906004906020840190620004e9565b50506005805460ff191660121790555060006200026a620004e5565b60058054610100600160a81b0319166101006001600160a01b03841690810291909117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350806001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620002fa57600080fd5b505afa1580156200030f573d6000803e3d6000fd5b505050506040513d60208110156200032657600080fd5b5051600780546001600160a01b039283166001600160a01b0319918216179091556006805492841692909116821790556040805163c45a015560e01b8152905163c45a015591600480820192602092909190829003018186803b1580156200038d57600080fd5b505afa158015620003a2573d6000803e3d6000fd5b505050506040513d6020811015620003b957600080fd5b5051600754604080516364e329cb60e11b81523060048201526001600160a01b0392831660248201529051919092169163c9c653969160448083019260209291908290030181600087803b1580156200041157600080fd5b505af115801562000426573d6000803e3d6000fd5b505050506040513d60208110156200043d57600080fd5b5051600880546001600160a01b0319166001600160a01b0392831617905560118054610100600160a81b0319166101009490921693909302179091555062000585915050565b600082820183811015620004de576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b3390565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200052c57805160ff19168380011785556200055c565b828001600101855582156200055c579182015b828111156200055c5782518255916020019190600101906200053f565b506200056a9291506200056e565b5090565b5b808211156200056a57600081556001016200056f565b615d5380620005956000396000f3fe6080604052600436106103a65760003560e01c806388bdd9be116101e7578063b62496f51161010d578063c9567bf9116100a0578063e7841ec01161006f578063e7841ec014610f45578063e98030c714610f5a578063f27fd25414610f84578063f2fde38b14610fae576103ad565b8063c9567bf914610e9d578063cec10c1114610eb2578063dd62ed3e14610ee8578063e2f4560514610f30576103ad565b8063c0246668116100dc578063c024666814610d23578063c492f04614610d6b578063c4d66de814610e1d578063c51d387e14610e5d576103ad565b8063b62496f514610c71578063b9a45aac14610cb1578063badb554314610cf9578063bbde77c114610d0e576103ad565b80639c96d83011610185578063a8b9d24011610154578063a8b9d24014610b29578063a9059cbb14610b69578063ad56c13c14610baf578063afa4f3b214610c47576103ad565b80639c96d83014610a465780639cee214214610a8e578063a26579ad14610ace578063a457c2d714610ae3576103ad565b806395d89b41116101c157806395d89b41146109bf57806398118cb4146109d45780639a7a23d6146109e95780639c1b8af514610a31576103ad565b806388bdd9be146109555780638d72647e146109955780638da5cb5b146109aa576103ad565b806342966c68116102cc57806365b8dbc01161026a57806370a082311161023957806370a08231146108c1578063715018a61461090157806385141a7714610916578063871c128d1461092b576103ad565b806365b8dbc0146108025780636843cd84146108425780636b67c4df14610882578063700bb19114610897576103ad565b80634e71d92d116102a65780634e71d92d146107585780634fbee1931461076d5780635d098b38146107ad57806364b0f653146107ed576103ad565b806342966c68146106d1578063455a4396146106fb57806349bd5a5e14610743576103ad565b806323b872dd11610344578063313ce56711610313578063313ce5671461060b57806331e79db01461063657806339509351146106765780634144d9e4146106bc576103ad565b806323b872dd146105655780632c1f5216146105b55780632c92293c146105ca57806330bb4cff146105f6576103ad565b8063158ef93e11610380578063158ef93e146104bd5780631694505e146104d257806318160ddd146105105780631cdd3be314610525576103ad565b806306fdde03146103b2578063095ea7b31461043c57806313114a9d14610496576103ad565b366103ad57005b600080fd5b3480156103be57600080fd5b506103c7610fee565b6040805160208082528351818301528351919283929083019185019080838360005b838110156104015781810151838201526020016103e9565b50505050905090810190601f16801561042e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561044857600080fd5b506104826004803603604081101561045f57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81351690602001356110a2565b604080519115158252519081900360200190f35b3480156104a257600080fd5b506104ab6110c0565b60408051918252519081900360200190f35b3480156104c957600080fd5b506104826110c6565b3480156104de57600080fd5b506104e76110cf565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b34801561051c57600080fd5b506104ab6110eb565b34801561053157600080fd5b506104826004803603602081101561054857600080fd5b503573ffffffffffffffffffffffffffffffffffffffff166110f1565b34801561057157600080fd5b506104826004803603606081101561058857600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813581169160208101359091169060400135611106565b3480156105c157600080fd5b506104e76111a7565b3480156105d657600080fd5b506105f4600480360360208110156105ed57600080fd5b50356111c3565b005b34801561060257600080fd5b506104ab611398565b34801561061757600080fd5b50610620611434565b6040805160ff9092168252519081900360200190f35b34801561064257600080fd5b506105f46004803603602081101561065957600080fd5b503573ffffffffffffffffffffffffffffffffffffffff1661143d565b34801561068257600080fd5b506104826004803603604081101561069957600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135611574565b3480156106c857600080fd5b506104e76115cf565b3480156106dd57600080fd5b506105f4600480360360208110156106f457600080fd5b50356115f0565b34801561070757600080fd5b506105f46004803603604081101561071e57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135151561168a565b34801561074f57600080fd5b506104e76117bd565b34801561076457600080fd5b506105f46117d9565b34801561077957600080fd5b506104826004803603602081101561079057600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611880565b3480156107b957600080fd5b506105f4600480360360208110156107d057600080fd5b503573ffffffffffffffffffffffffffffffffffffffff166118ab565b3480156107f957600080fd5b506104ab6119eb565b34801561080e57600080fd5b506105f46004803603602081101561082557600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611a56565b34801561084e57600080fd5b506104ab6004803603602081101561086557600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611e47565b34801561088e57600080fd5b506104ab611ef0565b3480156108a357600080fd5b506105f4600480360360208110156108ba57600080fd5b5035611ef6565b3480156108cd57600080fd5b506104ab600480360360208110156108e457600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16612000565b34801561090d57600080fd5b506105f4612028565b34801561092257600080fd5b506104e7612144565b34801561093757600080fd5b506105f46004803603602081101561094e57600080fd5b503561214a565b34801561096157600080fd5b506105f46004803603602081101561097857600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16612317565b3480156109a157600080fd5b506104e76127d8565b3480156109b657600080fd5b506104e76127f4565b3480156109cb57600080fd5b506103c7612815565b3480156109e057600080fd5b506104ab612894565b3480156109f557600080fd5b506105f460048036036040811015610a0c57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135151561289a565b348015610a3d57600080fd5b506104ab6129d6565b348015610a5257600080fd5b506105f460048036036040811015610a6957600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813516906020013515156129dc565b348015610a9a57600080fd5b5061048260048036036020811015610ab157600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16612b0f565b348015610ada57600080fd5b506104ab612b24565b348015610aef57600080fd5b5061048260048036036040811015610b0657600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135612b8f565b348015610b3557600080fd5b506104ab60048036036020811015610b4c57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16612c04565b348015610b7557600080fd5b5061048260048036036040811015610b8c57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135612c7b565b348015610bbb57600080fd5b50610bef60048036036020811015610bd257600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16612c8f565b6040805173ffffffffffffffffffffffffffffffffffffffff90991689526020890197909752878701959095526060870193909352608086019190915260a085015260c084015260e083015251908190036101000190f35b348015610c5357600080fd5b506105f460048036036020811015610c6a57600080fd5b5035612d96565b348015610c7d57600080fd5b5061048260048036036020811015610c9457600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16612eee565b348015610cbd57600080fd5b506105f460048036036040811015610cd457600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81351690602001351515612f03565b348015610d0557600080fd5b506104ab613036565b348015610d1a57600080fd5b506104ab61303c565b348015610d2f57600080fd5b506105f460048036036040811015610d4657600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81351690602001351515613042565b348015610d7757600080fd5b506105f460048036036040811015610d8e57600080fd5b810190602081018135640100000000811115610da957600080fd5b820183602082011115610dbb57600080fd5b80359060200191846020830284011164010000000083111715610ddd57600080fd5b91908080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525092955050505035151590506131fa565b348015610e2957600080fd5b506105f460048036036020811015610e4057600080fd5b503573ffffffffffffffffffffffffffffffffffffffff166133a8565b348015610e6957600080fd5b5061048260048036036020811015610e8057600080fd5b503573ffffffffffffffffffffffffffffffffffffffff1661394f565b348015610ea957600080fd5b506105f4613964565b348015610ebe57600080fd5b506105f460048036036060811015610ed557600080fd5b5080359060208101359060400135613a39565b348015610ef457600080fd5b506104ab60048036036040811015610f0b57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020013516613bc0565b348015610f3c57600080fd5b506104ab613bf8565b348015610f5157600080fd5b506104ab613bfe565b348015610f6657600080fd5b506105f460048036036020811015610f7d57600080fd5b5035613c69565b348015610f9057600080fd5b50610bef60048036036020811015610fa757600080fd5b5035613d84565b348015610fba57600080fd5b506105f460048036036020811015610fd157600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16613e04565b60038054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156110985780601f1061106d57610100808354040283529160200191611098565b820191906000526020600020905b81548152906001019060200180831161107b57829003601f168201915b5050505050905090565b60006110b66110af61402b565b848461402f565b5060015b92915050565b60105481565b60145460ff1681565b60065473ffffffffffffffffffffffffffffffffffffffff1681565b60025490565b600b6020526000908152604090205460ff1681565b6000611113848484614176565b61119d8461111f61402b565b61119885604051806060016040528060288152602001615c106028913973ffffffffffffffffffffffffffffffffffffffff8a1660009081526001602052604081209061116a61402b565b73ffffffffffffffffffffffffffffffffffffffff1681526020810191909152604001600020549190614b8f565b61402f565b5060019392505050565b60095473ffffffffffffffffffffffffffffffffffffffff1681565b6111cb61402b565b73ffffffffffffffffffffffffffffffffffffffff166111e96127f4565b73ffffffffffffffffffffffffffffffffffffffff161461126b57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60028110156112db57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600660248201527f6d696e2032250000000000000000000000000000000000000000000000000000604482015290519081900360640190fd5b606481111561134b57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600860248201527f6d61782031303025000000000000000000000000000000000000000000000000604482015290519081900360640190fd5b6064816113566110eb565b028161135e57fe5b046013556040805182815290517f9cbd2e55e2abf49d29273c1b9fb343c2828844b2aec156cfe2aec98ae1b72a999181900360200190a150565b600954604080517f85a6b3ae000000000000000000000000000000000000000000000000000000008152905160009273ffffffffffffffffffffffffffffffffffffffff16916385a6b3ae916004808301926020929190829003018186803b15801561140357600080fd5b505afa158015611417573d6000803e3d6000fd5b505050506040513d602081101561142d57600080fd5b5051905090565b60055460ff1690565b61144561402b565b73ffffffffffffffffffffffffffffffffffffffff166114636127f4565b73ffffffffffffffffffffffffffffffffffffffff16146114e557604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600954604080517f31e79db000000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8481166004830152915191909216916331e79db091602480830192600092919082900301818387803b15801561155957600080fd5b505af115801561156d573d6000803e3d6000fd5b5050505050565b60006110b661158161402b565b84611198856001600061159261402b565b73ffffffffffffffffffffffffffffffffffffffff908116825260208083019390935260409182016000908120918c168152925290205490613fb0565b601154610100900473ffffffffffffffffffffffffffffffffffffffff1681565b6115fa3382614c40565b60095473ffffffffffffffffffffffffffffffffffffffff1663e30443bc3361162281612000565b6040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050600060405180830381600087803b15801561167557600080fd5b505af1925050508015611686575060015b5050565b61169261402b565b73ffffffffffffffffffffffffffffffffffffffff166116b06127f4565b73ffffffffffffffffffffffffffffffffffffffff161461173257604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff82166000818152600b602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016851515908117909155825190815291517f09fb98d4f02479ce251faed0f992a3c326d006e19ffa4f7269239763a644f7259281900390910190a25050565b60085473ffffffffffffffffffffffffffffffffffffffff1681565b600954604080517fbc4c4b37000000000000000000000000000000000000000000000000000000008152336004820152600060248201819052915173ffffffffffffffffffffffffffffffffffffffff9093169263bc4c4b3792604480840193602093929083900390910190829087803b15801561185657600080fd5b505af115801561186a573d6000803e3d6000fd5b505050506040513d602081101561168657600080fd5b73ffffffffffffffffffffffffffffffffffffffff1660009081526016602052604090205460ff1690565b6118b361402b565b73ffffffffffffffffffffffffffffffffffffffff166118d16127f4565b73ffffffffffffffffffffffffffffffffffffffff161461195357604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60115460405173ffffffffffffffffffffffffffffffffffffffff80841692610100900416907fc17db519c06a38e30a448e03e08b3edec28a0a29d239f693ab94a6206a5ca63d90600090a36011805473ffffffffffffffffffffffffffffffffffffffff909216610100027fffffffffffffffffffffff0000000000000000000000000000000000000000ff909216919091179055565b600954604080517f09bbedde000000000000000000000000000000000000000000000000000000008152905160009273ffffffffffffffffffffffffffffffffffffffff16916309bbedde916004808301926020929190829003018186803b15801561140357600080fd5b611a5e61402b565b73ffffffffffffffffffffffffffffffffffffffff16611a7c6127f4565b73ffffffffffffffffffffffffffffffffffffffff1614611afe57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60065473ffffffffffffffffffffffffffffffffffffffff908116908216811415611b74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180615b906023913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8fc842bbd331dfa973645f4ed48b11683d501ebf1352708d77a5da2ab49a576e60405160405180910390a3600680547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff8416908117909155604080517fad5c464800000000000000000000000000000000000000000000000000000000815290516000929163ad5c4648916004808301926020929190829003018186803b158015611c6357600080fd5b505afa158015611c77573d6000803e3d6000fd5b505050506040513d6020811015611c8d57600080fd5b5051600780547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff80841691909117909155604080517fc45a015500000000000000000000000000000000000000000000000000000000815290519293506000929186169163c45a015591600480820192602092909190829003018186803b158015611d2d57600080fd5b505afa158015611d41573d6000803e3d6000fd5b505050506040513d6020811015611d5757600080fd5b5051604080517fc9c6539600000000000000000000000000000000000000000000000000000000815230600482015273ffffffffffffffffffffffffffffffffffffffff85811660248301529151919092169163c9c653969160448083019260209291908290030181600087803b158015611dd157600080fd5b505af1158015611de5573d6000803e3d6000fd5b505050506040513d6020811015611dfb57600080fd5b5051600880547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff90921691909117905550505050565b600954604080517f70a0823100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8481166004830152915160009392909216916370a0823191602480820192602092909190829003018186803b158015611ebe57600080fd5b505afa158015611ed2573d6000803e3d6000fd5b505050506040513d6020811015611ee857600080fd5b505192915050565b600f5481565b600954604080517fffb2c4790000000000000000000000000000000000000000000000000000000081526004810184905290516000928392839273ffffffffffffffffffffffffffffffffffffffff9092169163ffb2c4799160248082019260609290919082900301818787803b158015611f7057600080fd5b505af1158015611f84573d6000803e3d6000fd5b505050506040513d6060811015611f9a57600080fd5b5080516020808301516040938401518451848152928301829052828501819052606083018990529351929650945091925032916000917fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a989181900360800190a350505050565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b61203061402b565b73ffffffffffffffffffffffffffffffffffffffff1661204e6127f4565b73ffffffffffffffffffffffffffffffffffffffff16146120d057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600554604051600091610100900473ffffffffffffffffffffffffffffffffffffffff16907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580547fffffffffffffffffffffff0000000000000000000000000000000000000000ff169055565b61dead81565b61215261402b565b73ffffffffffffffffffffffffffffffffffffffff166121706127f4565b73ffffffffffffffffffffffffffffffffffffffff16146121f257604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b62030d40811015801561220857506207a1208111155b61227357604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f77726f6e6720676173466f7250726f63657373696e672076616c756500000000604482015290519081900360640190fd5b6012548114156122e457604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600a60248201527f73616d652076616c756500000000000000000000000000000000000000000000604482015290519081900360640190fd5b60125460405182907f40d7e40e79af4e8e5a9b3c57030d8ea93f13d669c06d448c4d631d4ae7d23db790600090a3601255565b61231f61402b565b73ffffffffffffffffffffffffffffffffffffffff1661233d6127f4565b73ffffffffffffffffffffffffffffffffffffffff16146123bf57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60095473ffffffffffffffffffffffffffffffffffffffff82811691161415612433576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602d815260200180615cf1602d913960400191505060405180910390fd5b60008190503073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16638da5cb5b6040518163ffffffff1660e01b815260040160206040518083038186803b15801561249557600080fd5b505afa1580156124a9573d6000803e3d6000fd5b505050506040513d60208110156124bf57600080fd5b505173ffffffffffffffffffffffffffffffffffffffff161461252d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603c815260200180615bb3603c913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166331e79db0826040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff168152602001915050600060405180830381600087803b15801561259657600080fd5b505af11580156125aa573d6000803e3d6000fd5b5050604080517f31e79db0000000000000000000000000000000000000000000000000000000008152306004820152905173ffffffffffffffffffffffffffffffffffffffff851693506331e79db09250602480830192600092919082900301818387803b15801561261b57600080fd5b505af115801561262f573d6000803e3d6000fd5b505050508073ffffffffffffffffffffffffffffffffffffffff166331e79db06126576127f4565b6040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff168152602001915050600060405180830381600087803b1580156126a357600080fd5b505af11580156126b7573d6000803e3d6000fd5b5050600654604080517f31e79db000000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff9283166004820152905191851693506331e79db0925060248082019260009290919082900301818387803b15801561272f57600080fd5b505af1158015612743573d6000803e3d6000fd5b505060095460405173ffffffffffffffffffffffffffffffffffffffff918216935090851691507f90c7d74461c613da5efa97d90740869367d74ab3aa5837aa4ae9a975f954b7a890600090a3600980547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff9290921691909117905550565b60075473ffffffffffffffffffffffffffffffffffffffff1681565b600554610100900473ffffffffffffffffffffffffffffffffffffffff1690565b60048054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156110985780601f1061106d57610100808354040283529160200191611098565b600e5481565b6128a261402b565b73ffffffffffffffffffffffffffffffffffffffff166128c06127f4565b73ffffffffffffffffffffffffffffffffffffffff161461294257604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60085473ffffffffffffffffffffffffffffffffffffffff838116911614156129cc57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f54686520706169722063616e6e6f742062652072656d6f766564000000000000604482015290519081900360640190fd5b6116868282614d8a565b60125481565b6129e461402b565b73ffffffffffffffffffffffffffffffffffffffff16612a026127f4565b73ffffffffffffffffffffffffffffffffffffffff1614612a8457604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff821660008181526015602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016851515908117909155825190815291517f92e8795ecf2941afb128c076fcfa29b0000ed31f0368e644d649ff1b3b10982c9281900390910190a25050565b600c6020526000908152604090205460ff1681565b600954604080517f6f2789ec000000000000000000000000000000000000000000000000000000008152905160009273ffffffffffffffffffffffffffffffffffffffff1691636f2789ec916004808301926020929190829003018186803b15801561140357600080fd5b60006110b6612b9c61402b565b8461119885604051806060016040528060258152602001615ccc6025913960016000612bc661402b565b73ffffffffffffffffffffffffffffffffffffffff908116825260208083019390935260409182016000908120918d16815292529020549190614b8f565b600954604080517fa8b9d24000000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff84811660048301529151600093929092169163a8b9d24091602480820192602092909190829003018186803b158015611ebe57600080fd5b60006110b6612c8861402b565b8484614176565b600080600080600080600080600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fbcbc0f18a6040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1681526020019150506101006040518083038186803b158015612d2557600080fd5b505afa158015612d39573d6000803e3d6000fd5b505050506040513d610100811015612d5057600080fd5b508051602082015160408301516060840151608085015160a086015160c087015160e090970151959e50939c50919a509850965094509092509050919395975091939597565b612d9e61402b565b73ffffffffffffffffffffffffffffffffffffffff16612dbc6127f4565b73ffffffffffffffffffffffffffffffffffffffff1614612e3e57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b655af3107a4000811015612eb357604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600f60248201527f746f6f20736d616c6c2076616c75650000000000000000000000000000000000604482015290519081900360640190fd5b600a8190556040805182815290517f7c26bfee26f82e8cb57af48f4019cc64582db6fac7bad778433f10572ae8b1459181900360200190a150565b60176020526000908152604090205460ff1681565b612f0b61402b565b73ffffffffffffffffffffffffffffffffffffffff16612f296127f4565b73ffffffffffffffffffffffffffffffffffffffff1614612fab57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff82166000818152600c602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016851515908117909155825190815291517f33e0bf3ce98fac4118d5a0a8fe49e83b6acdfdef32871c9eca20e1528d7701ba9281900390910190a25050565b600d5481565b60135481565b61304a61402b565b73ffffffffffffffffffffffffffffffffffffffff166130686127f4565b73ffffffffffffffffffffffffffffffffffffffff16146130ea57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff821660009081526016602052604090205460ff161515811515141561316f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180615ca2602a913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff821660008181526016602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016851515908117909155825190815291517f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79281900390910190a25050565b61320261402b565b73ffffffffffffffffffffffffffffffffffffffff166132206127f4565b73ffffffffffffffffffffffffffffffffffffffff16146132a257604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60005b82518110156133245781601660008584815181106132bf57fe5b60209081029190910181015173ffffffffffffffffffffffffffffffffffffffff16825281019190915260400160002080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169115159190911790556001016132a5565b507f7fdaf542373fa84f4ee8d662c642f44e4c2276a217d7d29e548b6eb29a233b35828260405180806020018315158152602001828103825284818151815260200191508051906020019060200280838360005b83811015613390578181015183820152602001613378565b50505050905001935050505060405180910390a15050565b6133b061402b565b73ffffffffffffffffffffffffffffffffffffffff166133ce6127f4565b73ffffffffffffffffffffffffffffffffffffffff161461345057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60145460ff16156134c257604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f696e697469616c697a6564000000000000000000000000000000000000000000604482015290519081900360640190fd5b6014805460017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff009091168117909155600980547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff848116919091179091556008548392911690613549908290614d8a565b60006135536127f4565b90508273ffffffffffffffffffffffffffffffffffffffff166331e79db0846040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff168152602001915050600060405180830381600087803b1580156135be57600080fd5b505af11580156135d2573d6000803e3d6000fd5b5050604080517f31e79db0000000000000000000000000000000000000000000000000000000008152306004820152905173ffffffffffffffffffffffffffffffffffffffff871693506331e79db09250602480830192600092919082900301818387803b15801561364357600080fd5b505af1158015613657573d6000803e3d6000fd5b505050508273ffffffffffffffffffffffffffffffffffffffff166331e79db0826040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff168152602001915050600060405180830381600087803b1580156136c457600080fd5b505af11580156136d8573d6000803e3d6000fd5b5050604080517f31e79db000000000000000000000000000000000000000000000000000000000815261dead6004820152905173ffffffffffffffffffffffffffffffffffffffff871693506331e79db09250602480830192600092919082900301818387803b15801561374b57600080fd5b505af115801561375f573d6000803e3d6000fd5b5050600654604080517f31e79db000000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff9283166004820152905191871693506331e79db0925060248082019260009290919082900301818387803b1580156137d757600080fd5b505af11580156137eb573d6000803e3d6000fd5b505050506137fa816001613042565b60115461382390610100900473ffffffffffffffffffffffffffffffffffffffff166001613042565b61382e306001613042565b73ffffffffffffffffffffffffffffffffffffffff828116600090815260156020526040808220805460017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff009182168117909255308452828420805482168317905560118054610100908190048716865284862080549093169093179091555491519104909216917fc17db519c06a38e30a448e03e08b3edec28a0a29d239f693ab94a6206a5ca63d908290a3336000908152600c6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016600117905561391d6009614f53565b6139318169d3c21bcecceda1000000614f87565b606461393b6110eb565b6002028161394557fe5b0460135550505050565b60156020526000908152604090205460ff1681565b61396c61402b565b73ffffffffffffffffffffffffffffffffffffffff1661398a6127f4565b73ffffffffffffffffffffffffffffffffffffffff1614613a0c57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b601180547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b613a4161402b565b73ffffffffffffffffffffffffffffffffffffffff16613a5f6127f4565b73ffffffffffffffffffffffffffffffffffffffff1614613ae157604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b601481838501011115613b5557604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f43524b3a20546f6f206869676820666565730000000000000000000000000000604482015290519081900360640190fd5b600d839055600e829055600f819055613b7881613b728585613fb0565b90613fb0565b601055604080518481526020810184905280820183905290517fe06a46af1c04656f68e4f75cbbb23baa176651c7f99930a378ef9f1616dc2b8c9181900360600190a1505050565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b600a5481565b600954604080517fe7841ec0000000000000000000000000000000000000000000000000000000008152905160009273ffffffffffffffffffffffffffffffffffffffff169163e7841ec0916004808301926020929190829003018186803b15801561140357600080fd5b613c7161402b565b73ffffffffffffffffffffffffffffffffffffffff16613c8f6127f4565b73ffffffffffffffffffffffffffffffffffffffff1614613d1157604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600954604080517fe98030c700000000000000000000000000000000000000000000000000000000815260048101849052905173ffffffffffffffffffffffffffffffffffffffff9092169163e98030c79160248082019260009290919082900301818387803b15801561155957600080fd5b600080600080600080600080600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16635183d6fd8a6040518263ffffffff1660e01b8152600401808281526020019150506101006040518083038186803b158015612d2557600080fd5b613e0c61402b565b73ffffffffffffffffffffffffffffffffffffffff16613e2a6127f4565b73ffffffffffffffffffffffffffffffffffffffff1614613eac57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff8116613f18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180615b226026913960400191505060405180910390fd5b60055460405173ffffffffffffffffffffffffffffffffffffffff80841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36005805473ffffffffffffffffffffffffffffffffffffffff909216610100027fffffffffffffffffffffff0000000000000000000000000000000000000000ff909216919091179055565b60008282018381101561402457604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b3390565b73ffffffffffffffffffffffffffffffffffffffff831661409b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180615c7e6024913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8216614107576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180615b486022913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b73ffffffffffffffffffffffffffffffffffffffff83166141f857604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f7472616e736665722066726f6d20746865207a65726f20616464726573730000604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff821661427a57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f7472616e7366657220746f20746865207a65726f206164647265737300000000604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff83166000908152600b602052604090205460ff161580156142d6575073ffffffffffffffffffffffffffffffffffffffff82166000908152600b602052604090205460ff16155b61434157604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f426c61636b6c6973746564000000000000000000000000000000000000000000604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff83166000908152600c602052604090205460ff1615801561439d575073ffffffffffffffffffffffffffffffffffffffff82166000908152600c602052604090205460ff16155b156144135760115460ff1661441357604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f6e6f207472616e64696e67000000000000000000000000000000000000000000604482015290519081900360640190fd5b8061442957614424838360006150b8565b614b8a565b600061443430612000565b600a5490915081101560006144476127f4565b60085460105491925074010000000000000000000000000000000000000000900460ff1690838015614477575081155b80156144a9575073ffffffffffffffffffffffffffffffffffffffff881660009081526017602052604090205460ff16155b80156144e157508273ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff1614155b801561451957508273ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff1614155b1561461057600880547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1674010000000000000000000000000000000000000000179055600f5460009061457a908390614574908990615288565b906152fb565b90506145a881601160019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661537c565b60006145c383614574600e548a61528890919063ffffffff16565b90506145ce816154b2565b60006145d930612000565b90506145e481615538565b5050600880547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff169055505b60085473ffffffffffffffffffffffffffffffffffffffff891660009081526017602052604090205460ff74010000000000000000000000000000000000000000909204821615911680614689575073ffffffffffffffffffffffffffffffffffffffff881660009081526017602052604090205460ff165b15806146ba575073ffffffffffffffffffffffffffffffffffffffff891660009081526016602052604090205460ff165b806146ea575073ffffffffffffffffffffffffffffffffffffffff881660009081526016602052604090205460ff165b156146f3575060005b801561476657600061470a60646145748a86615288565b73ffffffffffffffffffffffffffffffffffffffff8a1660009081526017602052604090205490915060ff161561474d5761474b60646145748a6003615288565b015b61475788826157e1565b97506147648a30836150b8565b505b6147718989896150b8565b73ffffffffffffffffffffffffffffffffffffffff881660009081526015602052604090205460ff16614817576013546147aa89612000565b111561481757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f6d61782077616c6c65742062616c616e63652065786365656465640000000000604482015290519081900360640190fd5b60095473ffffffffffffffffffffffffffffffffffffffff168063e30443bc8b61484081612000565b6040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050600060405180830381600087803b15801561489357600080fd5b505af11580156148a7573d6000803e3d6000fd5b505050508073ffffffffffffffffffffffffffffffffffffffff1663e30443bc8a6148d18c612000565b6040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050600060405180830381600087803b15801561492457600080fd5b505af1158015614938573d6000803e3d6000fd5b50505050601254620186a0015a10156149b257604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f696e73756666696369656e742067617300000000000000000000000000000000604482015290519081900360640190fd5b83614b8257601254604080517fffb2c47900000000000000000000000000000000000000000000000000000000815260048101839052905173ffffffffffffffffffffffffffffffffffffffff84169163ffb2c4799160248083019260609291908290030181600087803b158015614a2957600080fd5b505af1925050508015614a5d57506040513d6060811015614a4957600080fd5b508051602082015160409092015190919060015b614b30573d808015614a8b576040519150601f19603f3d011682016040523d82523d6000602084013e614a90565b606091505b507fc75fb740d515c4fc862cc5c8f95343266e804872e7206e24f75751db41c4bcdc816040518080602001828103825283818151815260200191508051906020019080838360005b83811015614af0578181015183820152602001614ad8565b50505050905090810190601f168015614b1d5780820380516001836020036101000a031916815260200191505b509250505060405180910390a150614b80565b604080518481526020810184905280820183905260608101869052905132916001917fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a989181900360800190a35050505b505b505050505050505b505050565b60008184841115614c38576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015614bfd578181015183820152602001614be5565b50505050905090810190601f168015614c2a5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b73ffffffffffffffffffffffffffffffffffffffff8216614cac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180615c386021913960400191505060405180910390fd5b614cb882600083614b8a565b614d0281604051806060016040528060228152602001615b006022913973ffffffffffffffffffffffffffffffffffffffff85166000908152602081905260409020549190614b8f565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260208190526040902055600254614d3590826157e1565b60025560408051828152905160009173ffffffffffffffffffffffffffffffffffffffff8516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b73ffffffffffffffffffffffffffffffffffffffff821660009081526017602052604090205460ff1615158115151415614e2557604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f416c72656164792073657420746f20746861742076616c756500000000000000604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff8216600090815260176020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00168215801591909117909155614f0a57600954604080517f31e79db000000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8581166004830152915191909216916331e79db091602480830192600092919082900301818387803b158015614ef157600080fd5b505af1158015614f05573d6000803e3d6000fd5b505050505b6040518115159073ffffffffffffffffffffffffffffffffffffffff8416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b600580547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660ff92909216919091179055565b73ffffffffffffffffffffffffffffffffffffffff821661500957604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b61501560008383614b8a565b6002546150229082613fb0565b60025573ffffffffffffffffffffffffffffffffffffffff82166000908152602081905260409020546150559082613fb0565b73ffffffffffffffffffffffffffffffffffffffff83166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b73ffffffffffffffffffffffffffffffffffffffff8316615124576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180615c596025913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8216615190576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180615add6023913960400191505060405180910390fd5b61519b838383614b8a565b6151e581604051806060016040528060268152602001615b6a6026913973ffffffffffffffffffffffffffffffffffffffff86166000908152602081905260409020549190614b8f565b73ffffffffffffffffffffffffffffffffffffffff80851660009081526020819052604080822093909355908416815220546152219082613fb0565b73ffffffffffffffffffffffffffffffffffffffff8084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600082615297575060006110ba565b828202828482816152a457fe5b0414614024576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180615bef6021913960400191505060405180910390fd5b600080821161536b57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b81838161537457fe5b049392505050565b60075473ffffffffffffffffffffffffffffffffffffffff164761539f84615858565b60006153ab47836157e1565b90508273ffffffffffffffffffffffffffffffffffffffff1663d0e30db0826040518263ffffffff1660e01b81526004016000604051808303818588803b1580156153f557600080fd5b505af1158015615409573d6000803e3d6000fd5b50505050508273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb85836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561547f57600080fd5b505af1158015615493573d6000803e3d6000fd5b505050506040513d60208110156154a957600080fd5b50505050505050565b60006154bf8260026152fb565b905060006154cd83836157e1565b9050476154d983615858565b60006154e547836157e1565b90506154f183826159fb565b604080518581526020810183905280820185905290517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15050505050565b61554181615858565b600754600954604080517f3243c7910000000000000000000000000000000000000000000000000000000081524760048201819052915173ffffffffffffffffffffffffffffffffffffffff94851694909316928391633243c79191602480830192600092919082900301818387803b1580156155bd57600080fd5b505af19250505080156155ce575060015b6156a1573d8080156155fc576040519150601f19603f3d011682016040523d82523d6000602084013e615601565b606091505b507fc75fb740d515c4fc862cc5c8f95343266e804872e7206e24f75751db41c4bcdc816040518080602001828103825283818151815260200191508051906020019080838360005b83811015615661578181015183820152602001615649565b50505050905090810190601f16801561568e5780820380516001836020036101000a031916815260200191505b509250505060405180910390a1506157db565b8273ffffffffffffffffffffffffffffffffffffffff1663d0e30db0826040518263ffffffff1660e01b81526004016000604051808303818588803b1580156156e957600080fd5b505af11580156156fd573d6000803e3d6000fd5b50505050508273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561577357600080fd5b505af1158015615787573d6000803e3d6000fd5b505050506040513d602081101561579d57600080fd5b5050604080518581526020810183905281517f80195cc573b02cc48460cbca6e6e4cc85ddb91959d946e1c3025ea3d87942dc3929181900390910190a15b50505050565b60008282111561585257604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b6006546040805160028082526060808301845273ffffffffffffffffffffffffffffffffffffffff909416939260208301908036833701905050905030816000815181106158a257fe5b73ffffffffffffffffffffffffffffffffffffffff92831660209182029290920101526007548251911690829060019081106158da57fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061591f30838561402f565b8173ffffffffffffffffffffffffffffffffffffffff1663791ac9478460008430426040518663ffffffff1660e01b815260040180868152602001858152602001806020018473ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b838110156159be5781810151838201526020016159a6565b505050509050019650505050505050600060405180830381600087803b1580156159e757600080fd5b505af11580156154a9573d6000803e3d6000fd5b60065473ffffffffffffffffffffffffffffffffffffffff16615a1f30828561402f565b604080517ff305d719000000000000000000000000000000000000000000000000000000008152306004820152602481018590526000604482018190526064820181905260848201524260a4820152905173ffffffffffffffffffffffffffffffffffffffff83169163f305d71991859160c48082019260609290919082900301818588803b158015615ab157600080fd5b505af1158015615ac5573d6000803e3d6000fd5b50505050506040513d606081101561156d57600080fdfe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636554686520726f7574657220616c72656164792068617320746861742061646472657373546865206e6577206469766964656e6420747261636b6572206d757374206265206f776e65642062792074686520746f6b656e20636f6e7472616374536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734163636f756e7420697320616c7265616479207468652076616c7565206f6620276578636c756465642745524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f546865206469766964656e6420747261636b657220616c72656164792068617320746861742061646472657373a2646970667358221220d08e80ba75af328b87255ce91f980ca393a5bcb8c836d57ce61b4c84a1324edf64736f6c634300060c0033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000009e0fc73751556f92cd68ed89ec7b96433389898c000000000000000000000000ec0a7a0c2439e8cb67b992b12ecd020ea943c7be000000000000000000000000000000000000000000000000000000000000000743726f4b696e6700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000343524b0000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106103a65760003560e01c806388bdd9be116101e7578063b62496f51161010d578063c9567bf9116100a0578063e7841ec01161006f578063e7841ec014610f45578063e98030c714610f5a578063f27fd25414610f84578063f2fde38b14610fae576103ad565b8063c9567bf914610e9d578063cec10c1114610eb2578063dd62ed3e14610ee8578063e2f4560514610f30576103ad565b8063c0246668116100dc578063c024666814610d23578063c492f04614610d6b578063c4d66de814610e1d578063c51d387e14610e5d576103ad565b8063b62496f514610c71578063b9a45aac14610cb1578063badb554314610cf9578063bbde77c114610d0e576103ad565b80639c96d83011610185578063a8b9d24011610154578063a8b9d24014610b29578063a9059cbb14610b69578063ad56c13c14610baf578063afa4f3b214610c47576103ad565b80639c96d83014610a465780639cee214214610a8e578063a26579ad14610ace578063a457c2d714610ae3576103ad565b806395d89b41116101c157806395d89b41146109bf57806398118cb4146109d45780639a7a23d6146109e95780639c1b8af514610a31576103ad565b806388bdd9be146109555780638d72647e146109955780638da5cb5b146109aa576103ad565b806342966c68116102cc57806365b8dbc01161026a57806370a082311161023957806370a08231146108c1578063715018a61461090157806385141a7714610916578063871c128d1461092b576103ad565b806365b8dbc0146108025780636843cd84146108425780636b67c4df14610882578063700bb19114610897576103ad565b80634e71d92d116102a65780634e71d92d146107585780634fbee1931461076d5780635d098b38146107ad57806364b0f653146107ed576103ad565b806342966c68146106d1578063455a4396146106fb57806349bd5a5e14610743576103ad565b806323b872dd11610344578063313ce56711610313578063313ce5671461060b57806331e79db01461063657806339509351146106765780634144d9e4146106bc576103ad565b806323b872dd146105655780632c1f5216146105b55780632c92293c146105ca57806330bb4cff146105f6576103ad565b8063158ef93e11610380578063158ef93e146104bd5780631694505e146104d257806318160ddd146105105780631cdd3be314610525576103ad565b806306fdde03146103b2578063095ea7b31461043c57806313114a9d14610496576103ad565b366103ad57005b600080fd5b3480156103be57600080fd5b506103c7610fee565b6040805160208082528351818301528351919283929083019185019080838360005b838110156104015781810151838201526020016103e9565b50505050905090810190601f16801561042e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561044857600080fd5b506104826004803603604081101561045f57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81351690602001356110a2565b604080519115158252519081900360200190f35b3480156104a257600080fd5b506104ab6110c0565b60408051918252519081900360200190f35b3480156104c957600080fd5b506104826110c6565b3480156104de57600080fd5b506104e76110cf565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b34801561051c57600080fd5b506104ab6110eb565b34801561053157600080fd5b506104826004803603602081101561054857600080fd5b503573ffffffffffffffffffffffffffffffffffffffff166110f1565b34801561057157600080fd5b506104826004803603606081101561058857600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813581169160208101359091169060400135611106565b3480156105c157600080fd5b506104e76111a7565b3480156105d657600080fd5b506105f4600480360360208110156105ed57600080fd5b50356111c3565b005b34801561060257600080fd5b506104ab611398565b34801561061757600080fd5b50610620611434565b6040805160ff9092168252519081900360200190f35b34801561064257600080fd5b506105f46004803603602081101561065957600080fd5b503573ffffffffffffffffffffffffffffffffffffffff1661143d565b34801561068257600080fd5b506104826004803603604081101561069957600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135611574565b3480156106c857600080fd5b506104e76115cf565b3480156106dd57600080fd5b506105f4600480360360208110156106f457600080fd5b50356115f0565b34801561070757600080fd5b506105f46004803603604081101561071e57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135151561168a565b34801561074f57600080fd5b506104e76117bd565b34801561076457600080fd5b506105f46117d9565b34801561077957600080fd5b506104826004803603602081101561079057600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611880565b3480156107b957600080fd5b506105f4600480360360208110156107d057600080fd5b503573ffffffffffffffffffffffffffffffffffffffff166118ab565b3480156107f957600080fd5b506104ab6119eb565b34801561080e57600080fd5b506105f46004803603602081101561082557600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611a56565b34801561084e57600080fd5b506104ab6004803603602081101561086557600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611e47565b34801561088e57600080fd5b506104ab611ef0565b3480156108a357600080fd5b506105f4600480360360208110156108ba57600080fd5b5035611ef6565b3480156108cd57600080fd5b506104ab600480360360208110156108e457600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16612000565b34801561090d57600080fd5b506105f4612028565b34801561092257600080fd5b506104e7612144565b34801561093757600080fd5b506105f46004803603602081101561094e57600080fd5b503561214a565b34801561096157600080fd5b506105f46004803603602081101561097857600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16612317565b3480156109a157600080fd5b506104e76127d8565b3480156109b657600080fd5b506104e76127f4565b3480156109cb57600080fd5b506103c7612815565b3480156109e057600080fd5b506104ab612894565b3480156109f557600080fd5b506105f460048036036040811015610a0c57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135151561289a565b348015610a3d57600080fd5b506104ab6129d6565b348015610a5257600080fd5b506105f460048036036040811015610a6957600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813516906020013515156129dc565b348015610a9a57600080fd5b5061048260048036036020811015610ab157600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16612b0f565b348015610ada57600080fd5b506104ab612b24565b348015610aef57600080fd5b5061048260048036036040811015610b0657600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135612b8f565b348015610b3557600080fd5b506104ab60048036036020811015610b4c57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16612c04565b348015610b7557600080fd5b5061048260048036036040811015610b8c57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135612c7b565b348015610bbb57600080fd5b50610bef60048036036020811015610bd257600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16612c8f565b6040805173ffffffffffffffffffffffffffffffffffffffff90991689526020890197909752878701959095526060870193909352608086019190915260a085015260c084015260e083015251908190036101000190f35b348015610c5357600080fd5b506105f460048036036020811015610c6a57600080fd5b5035612d96565b348015610c7d57600080fd5b5061048260048036036020811015610c9457600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16612eee565b348015610cbd57600080fd5b506105f460048036036040811015610cd457600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81351690602001351515612f03565b348015610d0557600080fd5b506104ab613036565b348015610d1a57600080fd5b506104ab61303c565b348015610d2f57600080fd5b506105f460048036036040811015610d4657600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81351690602001351515613042565b348015610d7757600080fd5b506105f460048036036040811015610d8e57600080fd5b810190602081018135640100000000811115610da957600080fd5b820183602082011115610dbb57600080fd5b80359060200191846020830284011164010000000083111715610ddd57600080fd5b91908080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525092955050505035151590506131fa565b348015610e2957600080fd5b506105f460048036036020811015610e4057600080fd5b503573ffffffffffffffffffffffffffffffffffffffff166133a8565b348015610e6957600080fd5b5061048260048036036020811015610e8057600080fd5b503573ffffffffffffffffffffffffffffffffffffffff1661394f565b348015610ea957600080fd5b506105f4613964565b348015610ebe57600080fd5b506105f460048036036060811015610ed557600080fd5b5080359060208101359060400135613a39565b348015610ef457600080fd5b506104ab60048036036040811015610f0b57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020013516613bc0565b348015610f3c57600080fd5b506104ab613bf8565b348015610f5157600080fd5b506104ab613bfe565b348015610f6657600080fd5b506105f460048036036020811015610f7d57600080fd5b5035613c69565b348015610f9057600080fd5b50610bef60048036036020811015610fa757600080fd5b5035613d84565b348015610fba57600080fd5b506105f460048036036020811015610fd157600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16613e04565b60038054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156110985780601f1061106d57610100808354040283529160200191611098565b820191906000526020600020905b81548152906001019060200180831161107b57829003601f168201915b5050505050905090565b60006110b66110af61402b565b848461402f565b5060015b92915050565b60105481565b60145460ff1681565b60065473ffffffffffffffffffffffffffffffffffffffff1681565b60025490565b600b6020526000908152604090205460ff1681565b6000611113848484614176565b61119d8461111f61402b565b61119885604051806060016040528060288152602001615c106028913973ffffffffffffffffffffffffffffffffffffffff8a1660009081526001602052604081209061116a61402b565b73ffffffffffffffffffffffffffffffffffffffff1681526020810191909152604001600020549190614b8f565b61402f565b5060019392505050565b60095473ffffffffffffffffffffffffffffffffffffffff1681565b6111cb61402b565b73ffffffffffffffffffffffffffffffffffffffff166111e96127f4565b73ffffffffffffffffffffffffffffffffffffffff161461126b57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60028110156112db57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600660248201527f6d696e2032250000000000000000000000000000000000000000000000000000604482015290519081900360640190fd5b606481111561134b57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600860248201527f6d61782031303025000000000000000000000000000000000000000000000000604482015290519081900360640190fd5b6064816113566110eb565b028161135e57fe5b046013556040805182815290517f9cbd2e55e2abf49d29273c1b9fb343c2828844b2aec156cfe2aec98ae1b72a999181900360200190a150565b600954604080517f85a6b3ae000000000000000000000000000000000000000000000000000000008152905160009273ffffffffffffffffffffffffffffffffffffffff16916385a6b3ae916004808301926020929190829003018186803b15801561140357600080fd5b505afa158015611417573d6000803e3d6000fd5b505050506040513d602081101561142d57600080fd5b5051905090565b60055460ff1690565b61144561402b565b73ffffffffffffffffffffffffffffffffffffffff166114636127f4565b73ffffffffffffffffffffffffffffffffffffffff16146114e557604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600954604080517f31e79db000000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8481166004830152915191909216916331e79db091602480830192600092919082900301818387803b15801561155957600080fd5b505af115801561156d573d6000803e3d6000fd5b5050505050565b60006110b661158161402b565b84611198856001600061159261402b565b73ffffffffffffffffffffffffffffffffffffffff908116825260208083019390935260409182016000908120918c168152925290205490613fb0565b601154610100900473ffffffffffffffffffffffffffffffffffffffff1681565b6115fa3382614c40565b60095473ffffffffffffffffffffffffffffffffffffffff1663e30443bc3361162281612000565b6040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050600060405180830381600087803b15801561167557600080fd5b505af1925050508015611686575060015b5050565b61169261402b565b73ffffffffffffffffffffffffffffffffffffffff166116b06127f4565b73ffffffffffffffffffffffffffffffffffffffff161461173257604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff82166000818152600b602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016851515908117909155825190815291517f09fb98d4f02479ce251faed0f992a3c326d006e19ffa4f7269239763a644f7259281900390910190a25050565b60085473ffffffffffffffffffffffffffffffffffffffff1681565b600954604080517fbc4c4b37000000000000000000000000000000000000000000000000000000008152336004820152600060248201819052915173ffffffffffffffffffffffffffffffffffffffff9093169263bc4c4b3792604480840193602093929083900390910190829087803b15801561185657600080fd5b505af115801561186a573d6000803e3d6000fd5b505050506040513d602081101561168657600080fd5b73ffffffffffffffffffffffffffffffffffffffff1660009081526016602052604090205460ff1690565b6118b361402b565b73ffffffffffffffffffffffffffffffffffffffff166118d16127f4565b73ffffffffffffffffffffffffffffffffffffffff161461195357604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60115460405173ffffffffffffffffffffffffffffffffffffffff80841692610100900416907fc17db519c06a38e30a448e03e08b3edec28a0a29d239f693ab94a6206a5ca63d90600090a36011805473ffffffffffffffffffffffffffffffffffffffff909216610100027fffffffffffffffffffffff0000000000000000000000000000000000000000ff909216919091179055565b600954604080517f09bbedde000000000000000000000000000000000000000000000000000000008152905160009273ffffffffffffffffffffffffffffffffffffffff16916309bbedde916004808301926020929190829003018186803b15801561140357600080fd5b611a5e61402b565b73ffffffffffffffffffffffffffffffffffffffff16611a7c6127f4565b73ffffffffffffffffffffffffffffffffffffffff1614611afe57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60065473ffffffffffffffffffffffffffffffffffffffff908116908216811415611b74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180615b906023913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8fc842bbd331dfa973645f4ed48b11683d501ebf1352708d77a5da2ab49a576e60405160405180910390a3600680547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff8416908117909155604080517fad5c464800000000000000000000000000000000000000000000000000000000815290516000929163ad5c4648916004808301926020929190829003018186803b158015611c6357600080fd5b505afa158015611c77573d6000803e3d6000fd5b505050506040513d6020811015611c8d57600080fd5b5051600780547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff80841691909117909155604080517fc45a015500000000000000000000000000000000000000000000000000000000815290519293506000929186169163c45a015591600480820192602092909190829003018186803b158015611d2d57600080fd5b505afa158015611d41573d6000803e3d6000fd5b505050506040513d6020811015611d5757600080fd5b5051604080517fc9c6539600000000000000000000000000000000000000000000000000000000815230600482015273ffffffffffffffffffffffffffffffffffffffff85811660248301529151919092169163c9c653969160448083019260209291908290030181600087803b158015611dd157600080fd5b505af1158015611de5573d6000803e3d6000fd5b505050506040513d6020811015611dfb57600080fd5b5051600880547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff90921691909117905550505050565b600954604080517f70a0823100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8481166004830152915160009392909216916370a0823191602480820192602092909190829003018186803b158015611ebe57600080fd5b505afa158015611ed2573d6000803e3d6000fd5b505050506040513d6020811015611ee857600080fd5b505192915050565b600f5481565b600954604080517fffb2c4790000000000000000000000000000000000000000000000000000000081526004810184905290516000928392839273ffffffffffffffffffffffffffffffffffffffff9092169163ffb2c4799160248082019260609290919082900301818787803b158015611f7057600080fd5b505af1158015611f84573d6000803e3d6000fd5b505050506040513d6060811015611f9a57600080fd5b5080516020808301516040938401518451848152928301829052828501819052606083018990529351929650945091925032916000917fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a989181900360800190a350505050565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b61203061402b565b73ffffffffffffffffffffffffffffffffffffffff1661204e6127f4565b73ffffffffffffffffffffffffffffffffffffffff16146120d057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600554604051600091610100900473ffffffffffffffffffffffffffffffffffffffff16907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580547fffffffffffffffffffffff0000000000000000000000000000000000000000ff169055565b61dead81565b61215261402b565b73ffffffffffffffffffffffffffffffffffffffff166121706127f4565b73ffffffffffffffffffffffffffffffffffffffff16146121f257604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b62030d40811015801561220857506207a1208111155b61227357604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f77726f6e6720676173466f7250726f63657373696e672076616c756500000000604482015290519081900360640190fd5b6012548114156122e457604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600a60248201527f73616d652076616c756500000000000000000000000000000000000000000000604482015290519081900360640190fd5b60125460405182907f40d7e40e79af4e8e5a9b3c57030d8ea93f13d669c06d448c4d631d4ae7d23db790600090a3601255565b61231f61402b565b73ffffffffffffffffffffffffffffffffffffffff1661233d6127f4565b73ffffffffffffffffffffffffffffffffffffffff16146123bf57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60095473ffffffffffffffffffffffffffffffffffffffff82811691161415612433576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602d815260200180615cf1602d913960400191505060405180910390fd5b60008190503073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16638da5cb5b6040518163ffffffff1660e01b815260040160206040518083038186803b15801561249557600080fd5b505afa1580156124a9573d6000803e3d6000fd5b505050506040513d60208110156124bf57600080fd5b505173ffffffffffffffffffffffffffffffffffffffff161461252d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603c815260200180615bb3603c913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166331e79db0826040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff168152602001915050600060405180830381600087803b15801561259657600080fd5b505af11580156125aa573d6000803e3d6000fd5b5050604080517f31e79db0000000000000000000000000000000000000000000000000000000008152306004820152905173ffffffffffffffffffffffffffffffffffffffff851693506331e79db09250602480830192600092919082900301818387803b15801561261b57600080fd5b505af115801561262f573d6000803e3d6000fd5b505050508073ffffffffffffffffffffffffffffffffffffffff166331e79db06126576127f4565b6040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff168152602001915050600060405180830381600087803b1580156126a357600080fd5b505af11580156126b7573d6000803e3d6000fd5b5050600654604080517f31e79db000000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff9283166004820152905191851693506331e79db0925060248082019260009290919082900301818387803b15801561272f57600080fd5b505af1158015612743573d6000803e3d6000fd5b505060095460405173ffffffffffffffffffffffffffffffffffffffff918216935090851691507f90c7d74461c613da5efa97d90740869367d74ab3aa5837aa4ae9a975f954b7a890600090a3600980547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff9290921691909117905550565b60075473ffffffffffffffffffffffffffffffffffffffff1681565b600554610100900473ffffffffffffffffffffffffffffffffffffffff1690565b60048054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156110985780601f1061106d57610100808354040283529160200191611098565b600e5481565b6128a261402b565b73ffffffffffffffffffffffffffffffffffffffff166128c06127f4565b73ffffffffffffffffffffffffffffffffffffffff161461294257604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60085473ffffffffffffffffffffffffffffffffffffffff838116911614156129cc57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f54686520706169722063616e6e6f742062652072656d6f766564000000000000604482015290519081900360640190fd5b6116868282614d8a565b60125481565b6129e461402b565b73ffffffffffffffffffffffffffffffffffffffff16612a026127f4565b73ffffffffffffffffffffffffffffffffffffffff1614612a8457604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff821660008181526015602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016851515908117909155825190815291517f92e8795ecf2941afb128c076fcfa29b0000ed31f0368e644d649ff1b3b10982c9281900390910190a25050565b600c6020526000908152604090205460ff1681565b600954604080517f6f2789ec000000000000000000000000000000000000000000000000000000008152905160009273ffffffffffffffffffffffffffffffffffffffff1691636f2789ec916004808301926020929190829003018186803b15801561140357600080fd5b60006110b6612b9c61402b565b8461119885604051806060016040528060258152602001615ccc6025913960016000612bc661402b565b73ffffffffffffffffffffffffffffffffffffffff908116825260208083019390935260409182016000908120918d16815292529020549190614b8f565b600954604080517fa8b9d24000000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff84811660048301529151600093929092169163a8b9d24091602480820192602092909190829003018186803b158015611ebe57600080fd5b60006110b6612c8861402b565b8484614176565b600080600080600080600080600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fbcbc0f18a6040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1681526020019150506101006040518083038186803b158015612d2557600080fd5b505afa158015612d39573d6000803e3d6000fd5b505050506040513d610100811015612d5057600080fd5b508051602082015160408301516060840151608085015160a086015160c087015160e090970151959e50939c50919a509850965094509092509050919395975091939597565b612d9e61402b565b73ffffffffffffffffffffffffffffffffffffffff16612dbc6127f4565b73ffffffffffffffffffffffffffffffffffffffff1614612e3e57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b655af3107a4000811015612eb357604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600f60248201527f746f6f20736d616c6c2076616c75650000000000000000000000000000000000604482015290519081900360640190fd5b600a8190556040805182815290517f7c26bfee26f82e8cb57af48f4019cc64582db6fac7bad778433f10572ae8b1459181900360200190a150565b60176020526000908152604090205460ff1681565b612f0b61402b565b73ffffffffffffffffffffffffffffffffffffffff16612f296127f4565b73ffffffffffffffffffffffffffffffffffffffff1614612fab57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff82166000818152600c602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016851515908117909155825190815291517f33e0bf3ce98fac4118d5a0a8fe49e83b6acdfdef32871c9eca20e1528d7701ba9281900390910190a25050565b600d5481565b60135481565b61304a61402b565b73ffffffffffffffffffffffffffffffffffffffff166130686127f4565b73ffffffffffffffffffffffffffffffffffffffff16146130ea57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff821660009081526016602052604090205460ff161515811515141561316f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180615ca2602a913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff821660008181526016602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016851515908117909155825190815291517f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79281900390910190a25050565b61320261402b565b73ffffffffffffffffffffffffffffffffffffffff166132206127f4565b73ffffffffffffffffffffffffffffffffffffffff16146132a257604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60005b82518110156133245781601660008584815181106132bf57fe5b60209081029190910181015173ffffffffffffffffffffffffffffffffffffffff16825281019190915260400160002080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169115159190911790556001016132a5565b507f7fdaf542373fa84f4ee8d662c642f44e4c2276a217d7d29e548b6eb29a233b35828260405180806020018315158152602001828103825284818151815260200191508051906020019060200280838360005b83811015613390578181015183820152602001613378565b50505050905001935050505060405180910390a15050565b6133b061402b565b73ffffffffffffffffffffffffffffffffffffffff166133ce6127f4565b73ffffffffffffffffffffffffffffffffffffffff161461345057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60145460ff16156134c257604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f696e697469616c697a6564000000000000000000000000000000000000000000604482015290519081900360640190fd5b6014805460017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff009091168117909155600980547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff848116919091179091556008548392911690613549908290614d8a565b60006135536127f4565b90508273ffffffffffffffffffffffffffffffffffffffff166331e79db0846040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff168152602001915050600060405180830381600087803b1580156135be57600080fd5b505af11580156135d2573d6000803e3d6000fd5b5050604080517f31e79db0000000000000000000000000000000000000000000000000000000008152306004820152905173ffffffffffffffffffffffffffffffffffffffff871693506331e79db09250602480830192600092919082900301818387803b15801561364357600080fd5b505af1158015613657573d6000803e3d6000fd5b505050508273ffffffffffffffffffffffffffffffffffffffff166331e79db0826040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff168152602001915050600060405180830381600087803b1580156136c457600080fd5b505af11580156136d8573d6000803e3d6000fd5b5050604080517f31e79db000000000000000000000000000000000000000000000000000000000815261dead6004820152905173ffffffffffffffffffffffffffffffffffffffff871693506331e79db09250602480830192600092919082900301818387803b15801561374b57600080fd5b505af115801561375f573d6000803e3d6000fd5b5050600654604080517f31e79db000000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff9283166004820152905191871693506331e79db0925060248082019260009290919082900301818387803b1580156137d757600080fd5b505af11580156137eb573d6000803e3d6000fd5b505050506137fa816001613042565b60115461382390610100900473ffffffffffffffffffffffffffffffffffffffff166001613042565b61382e306001613042565b73ffffffffffffffffffffffffffffffffffffffff828116600090815260156020526040808220805460017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff009182168117909255308452828420805482168317905560118054610100908190048716865284862080549093169093179091555491519104909216917fc17db519c06a38e30a448e03e08b3edec28a0a29d239f693ab94a6206a5ca63d908290a3336000908152600c6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016600117905561391d6009614f53565b6139318169d3c21bcecceda1000000614f87565b606461393b6110eb565b6002028161394557fe5b0460135550505050565b60156020526000908152604090205460ff1681565b61396c61402b565b73ffffffffffffffffffffffffffffffffffffffff1661398a6127f4565b73ffffffffffffffffffffffffffffffffffffffff1614613a0c57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b601180547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b613a4161402b565b73ffffffffffffffffffffffffffffffffffffffff16613a5f6127f4565b73ffffffffffffffffffffffffffffffffffffffff1614613ae157604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b601481838501011115613b5557604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f43524b3a20546f6f206869676820666565730000000000000000000000000000604482015290519081900360640190fd5b600d839055600e829055600f819055613b7881613b728585613fb0565b90613fb0565b601055604080518481526020810184905280820183905290517fe06a46af1c04656f68e4f75cbbb23baa176651c7f99930a378ef9f1616dc2b8c9181900360600190a1505050565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b600a5481565b600954604080517fe7841ec0000000000000000000000000000000000000000000000000000000008152905160009273ffffffffffffffffffffffffffffffffffffffff169163e7841ec0916004808301926020929190829003018186803b15801561140357600080fd5b613c7161402b565b73ffffffffffffffffffffffffffffffffffffffff16613c8f6127f4565b73ffffffffffffffffffffffffffffffffffffffff1614613d1157604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600954604080517fe98030c700000000000000000000000000000000000000000000000000000000815260048101849052905173ffffffffffffffffffffffffffffffffffffffff9092169163e98030c79160248082019260009290919082900301818387803b15801561155957600080fd5b600080600080600080600080600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16635183d6fd8a6040518263ffffffff1660e01b8152600401808281526020019150506101006040518083038186803b158015612d2557600080fd5b613e0c61402b565b73ffffffffffffffffffffffffffffffffffffffff16613e2a6127f4565b73ffffffffffffffffffffffffffffffffffffffff1614613eac57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff8116613f18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180615b226026913960400191505060405180910390fd5b60055460405173ffffffffffffffffffffffffffffffffffffffff80841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36005805473ffffffffffffffffffffffffffffffffffffffff909216610100027fffffffffffffffffffffff0000000000000000000000000000000000000000ff909216919091179055565b60008282018381101561402457604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b3390565b73ffffffffffffffffffffffffffffffffffffffff831661409b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180615c7e6024913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8216614107576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180615b486022913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b73ffffffffffffffffffffffffffffffffffffffff83166141f857604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f7472616e736665722066726f6d20746865207a65726f20616464726573730000604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff821661427a57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f7472616e7366657220746f20746865207a65726f206164647265737300000000604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff83166000908152600b602052604090205460ff161580156142d6575073ffffffffffffffffffffffffffffffffffffffff82166000908152600b602052604090205460ff16155b61434157604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f426c61636b6c6973746564000000000000000000000000000000000000000000604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff83166000908152600c602052604090205460ff1615801561439d575073ffffffffffffffffffffffffffffffffffffffff82166000908152600c602052604090205460ff16155b156144135760115460ff1661441357604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f6e6f207472616e64696e67000000000000000000000000000000000000000000604482015290519081900360640190fd5b8061442957614424838360006150b8565b614b8a565b600061443430612000565b600a5490915081101560006144476127f4565b60085460105491925074010000000000000000000000000000000000000000900460ff1690838015614477575081155b80156144a9575073ffffffffffffffffffffffffffffffffffffffff881660009081526017602052604090205460ff16155b80156144e157508273ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff1614155b801561451957508273ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff1614155b1561461057600880547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1674010000000000000000000000000000000000000000179055600f5460009061457a908390614574908990615288565b906152fb565b90506145a881601160019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661537c565b60006145c383614574600e548a61528890919063ffffffff16565b90506145ce816154b2565b60006145d930612000565b90506145e481615538565b5050600880547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff169055505b60085473ffffffffffffffffffffffffffffffffffffffff891660009081526017602052604090205460ff74010000000000000000000000000000000000000000909204821615911680614689575073ffffffffffffffffffffffffffffffffffffffff881660009081526017602052604090205460ff165b15806146ba575073ffffffffffffffffffffffffffffffffffffffff891660009081526016602052604090205460ff165b806146ea575073ffffffffffffffffffffffffffffffffffffffff881660009081526016602052604090205460ff165b156146f3575060005b801561476657600061470a60646145748a86615288565b73ffffffffffffffffffffffffffffffffffffffff8a1660009081526017602052604090205490915060ff161561474d5761474b60646145748a6003615288565b015b61475788826157e1565b97506147648a30836150b8565b505b6147718989896150b8565b73ffffffffffffffffffffffffffffffffffffffff881660009081526015602052604090205460ff16614817576013546147aa89612000565b111561481757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f6d61782077616c6c65742062616c616e63652065786365656465640000000000604482015290519081900360640190fd5b60095473ffffffffffffffffffffffffffffffffffffffff168063e30443bc8b61484081612000565b6040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050600060405180830381600087803b15801561489357600080fd5b505af11580156148a7573d6000803e3d6000fd5b505050508073ffffffffffffffffffffffffffffffffffffffff1663e30443bc8a6148d18c612000565b6040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050600060405180830381600087803b15801561492457600080fd5b505af1158015614938573d6000803e3d6000fd5b50505050601254620186a0015a10156149b257604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f696e73756666696369656e742067617300000000000000000000000000000000604482015290519081900360640190fd5b83614b8257601254604080517fffb2c47900000000000000000000000000000000000000000000000000000000815260048101839052905173ffffffffffffffffffffffffffffffffffffffff84169163ffb2c4799160248083019260609291908290030181600087803b158015614a2957600080fd5b505af1925050508015614a5d57506040513d6060811015614a4957600080fd5b508051602082015160409092015190919060015b614b30573d808015614a8b576040519150601f19603f3d011682016040523d82523d6000602084013e614a90565b606091505b507fc75fb740d515c4fc862cc5c8f95343266e804872e7206e24f75751db41c4bcdc816040518080602001828103825283818151815260200191508051906020019080838360005b83811015614af0578181015183820152602001614ad8565b50505050905090810190601f168015614b1d5780820380516001836020036101000a031916815260200191505b509250505060405180910390a150614b80565b604080518481526020810184905280820183905260608101869052905132916001917fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a989181900360800190a35050505b505b505050505050505b505050565b60008184841115614c38576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015614bfd578181015183820152602001614be5565b50505050905090810190601f168015614c2a5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b73ffffffffffffffffffffffffffffffffffffffff8216614cac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180615c386021913960400191505060405180910390fd5b614cb882600083614b8a565b614d0281604051806060016040528060228152602001615b006022913973ffffffffffffffffffffffffffffffffffffffff85166000908152602081905260409020549190614b8f565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260208190526040902055600254614d3590826157e1565b60025560408051828152905160009173ffffffffffffffffffffffffffffffffffffffff8516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b73ffffffffffffffffffffffffffffffffffffffff821660009081526017602052604090205460ff1615158115151415614e2557604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f416c72656164792073657420746f20746861742076616c756500000000000000604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff8216600090815260176020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00168215801591909117909155614f0a57600954604080517f31e79db000000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8581166004830152915191909216916331e79db091602480830192600092919082900301818387803b158015614ef157600080fd5b505af1158015614f05573d6000803e3d6000fd5b505050505b6040518115159073ffffffffffffffffffffffffffffffffffffffff8416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b600580547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660ff92909216919091179055565b73ffffffffffffffffffffffffffffffffffffffff821661500957604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b61501560008383614b8a565b6002546150229082613fb0565b60025573ffffffffffffffffffffffffffffffffffffffff82166000908152602081905260409020546150559082613fb0565b73ffffffffffffffffffffffffffffffffffffffff83166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b73ffffffffffffffffffffffffffffffffffffffff8316615124576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180615c596025913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8216615190576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180615add6023913960400191505060405180910390fd5b61519b838383614b8a565b6151e581604051806060016040528060268152602001615b6a6026913973ffffffffffffffffffffffffffffffffffffffff86166000908152602081905260409020549190614b8f565b73ffffffffffffffffffffffffffffffffffffffff80851660009081526020819052604080822093909355908416815220546152219082613fb0565b73ffffffffffffffffffffffffffffffffffffffff8084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600082615297575060006110ba565b828202828482816152a457fe5b0414614024576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180615bef6021913960400191505060405180910390fd5b600080821161536b57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b81838161537457fe5b049392505050565b60075473ffffffffffffffffffffffffffffffffffffffff164761539f84615858565b60006153ab47836157e1565b90508273ffffffffffffffffffffffffffffffffffffffff1663d0e30db0826040518263ffffffff1660e01b81526004016000604051808303818588803b1580156153f557600080fd5b505af1158015615409573d6000803e3d6000fd5b50505050508273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb85836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561547f57600080fd5b505af1158015615493573d6000803e3d6000fd5b505050506040513d60208110156154a957600080fd5b50505050505050565b60006154bf8260026152fb565b905060006154cd83836157e1565b9050476154d983615858565b60006154e547836157e1565b90506154f183826159fb565b604080518581526020810183905280820185905290517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15050505050565b61554181615858565b600754600954604080517f3243c7910000000000000000000000000000000000000000000000000000000081524760048201819052915173ffffffffffffffffffffffffffffffffffffffff94851694909316928391633243c79191602480830192600092919082900301818387803b1580156155bd57600080fd5b505af19250505080156155ce575060015b6156a1573d8080156155fc576040519150601f19603f3d011682016040523d82523d6000602084013e615601565b606091505b507fc75fb740d515c4fc862cc5c8f95343266e804872e7206e24f75751db41c4bcdc816040518080602001828103825283818151815260200191508051906020019080838360005b83811015615661578181015183820152602001615649565b50505050905090810190601f16801561568e5780820380516001836020036101000a031916815260200191505b509250505060405180910390a1506157db565b8273ffffffffffffffffffffffffffffffffffffffff1663d0e30db0826040518263ffffffff1660e01b81526004016000604051808303818588803b1580156156e957600080fd5b505af11580156156fd573d6000803e3d6000fd5b50505050508273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561577357600080fd5b505af1158015615787573d6000803e3d6000fd5b505050506040513d602081101561579d57600080fd5b5050604080518581526020810183905281517f80195cc573b02cc48460cbca6e6e4cc85ddb91959d946e1c3025ea3d87942dc3929181900390910190a15b50505050565b60008282111561585257604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b6006546040805160028082526060808301845273ffffffffffffffffffffffffffffffffffffffff909416939260208301908036833701905050905030816000815181106158a257fe5b73ffffffffffffffffffffffffffffffffffffffff92831660209182029290920101526007548251911690829060019081106158da57fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061591f30838561402f565b8173ffffffffffffffffffffffffffffffffffffffff1663791ac9478460008430426040518663ffffffff1660e01b815260040180868152602001858152602001806020018473ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b838110156159be5781810151838201526020016159a6565b505050509050019650505050505050600060405180830381600087803b1580156159e757600080fd5b505af11580156154a9573d6000803e3d6000fd5b60065473ffffffffffffffffffffffffffffffffffffffff16615a1f30828561402f565b604080517ff305d719000000000000000000000000000000000000000000000000000000008152306004820152602481018590526000604482018190526064820181905260848201524260a4820152905173ffffffffffffffffffffffffffffffffffffffff83169163f305d71991859160c48082019260609290919082900301818588803b158015615ab157600080fd5b505af1158015615ac5573d6000803e3d6000fd5b50505050506040513d606081101561156d57600080fdfe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636554686520726f7574657220616c72656164792068617320746861742061646472657373546865206e6577206469766964656e6420747261636b6572206d757374206265206f776e65642062792074686520746f6b656e20636f6e7472616374536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734163636f756e7420697320616c7265616479207468652076616c7565206f6620276578636c756465642745524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f546865206469766964656e6420747261636b657220616c72656164792068617320746861742061646472657373a2646970667358221220d08e80ba75af328b87255ce91f980ca393a5bcb8c836d57ce61b4c84a1324edf64736f6c634300060c0033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000009e0fc73751556f92cd68ed89ec7b96433389898c000000000000000000000000ec0a7a0c2439e8cb67b992b12ecd020ea943c7be000000000000000000000000000000000000000000000000000000000000000743726f4b696e6700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000343524b0000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): CroKing
Arg [1] : symbol (string): CRK
Arg [2] : marketingWalletAddress (address): 0x9E0fc73751556F92Cd68eD89ec7b96433389898C
Arg [3] : _uniswapV2Router (address): 0xeC0A7a0C2439E8Cb67b992b12ecd020Ea943c7Be

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000009e0fc73751556f92cd68ed89ec7b96433389898c
Arg [3] : 000000000000000000000000ec0a7a0c2439e8cb67b992b12ecd020ea943c7be
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [5] : 43726f4b696e6700000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [7] : 43524b0000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

51629:19548:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15839:91;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17985:169;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17985:169:0;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;52272:85;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;52617:31;;;;;;;;;;;;;:::i;51711:41::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;16938:108;;;;;;;;;;;;;:::i;52049:46::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52049:46:0;;;;:::i;18636:321::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18636:321:0;;;;;;;;;;;;;;;;;;:::i;51852:38::-;;;;;;;;;;;;;:::i;70391:275::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;70391:275:0;;:::i;:::-;;61519:141;;;;;;;;;;;;;:::i;16782:91::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;62109:130;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;62109:130:0;;;;:::i;19366:218::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19366:218:0;;;;;;;;;:::i;52407:38::-;;;;;;;;;;;;;:::i;70204:179::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;70204:179:0;;:::i;60080:172::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;60080:172:0;;;;;;;;;;;:::i;51785:28::-;;;;;;;;;;;;;:::i;63367:94::-;;;;;;;;;;;;;:::i;61668:126::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;61668:126:0;;;;:::i;59061:193::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;59061:193:0;;;;:::i;63607:142::-;;;;;;;;;;;;;:::i;57752:632::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;57752:632:0;;;;:::i;61962:139::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;61962:139:0;;;;:::i;52234:31::-;;;;;;;;;;;;;:::i;62975:384::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;62975:384:0;;:::i;17109:127::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17109:127:0;;;;:::i;2826:148::-;;;;;;;;;;;;;:::i;51899:79::-;;;;;;;;;;;;;:::i;60854:408::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;60854:408:0;;:::i;56865:879::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;56865:879:0;;;;:::i;51759:19::-;;;;;;;;;;;;;:::i;2175:87::-;;;;;;;;;;;;;:::i;16049:95::-;;;;;;;;;;;;;:::i;52196:31::-;;;;;;;;;;;;;:::i;59822:250::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;59822:250:0;;;;;;;;;;;:::i;52524:40::-;;;;;;;;;;;;;:::i;70674:204::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;70674:204:0;;;;;;;;;;;:::i;52102:46::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52102:46:0;;;;:::i;61402:109::-;;;;;;;;;;;;;:::i;20087:269::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20087:269:0;;;;;;;;;:::i;61802:152::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;61802:152:0;;;;:::i;17449:175::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17449:175:0;;;;;;;;;:::i;62247:351::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;62247:351:0;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70886:286;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;70886:286:0;;:::i;52983:57::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52983:57:0;;;;:::i;60260:172::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;60260:172:0;;;;;;;;;;;:::i;52157:32::-;;;;;;;;;;;;;:::i;52573:31::-;;;;;;;;;;;;;:::i;58392:327::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;58392:327:0;;;;;;;;;;;:::i;58727:326::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;58727:326:0;;-1:-1:-1;;;;58727:326:0;;;;-1:-1:-1;58727:326:0;:::i;55199:1621::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;55199:1621:0;;;;:::i;52657:54::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52657:54:0;;;;:::i;63757:77::-;;;;;;;;;;;;;:::i;59264:550::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;59264:550:0;;;;;;;;;;;;:::i;17687:151::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17687:151:0;;;;;;;;;;;:::i;51987:53::-;;;;;;;;;;;;;:::i;63469:130::-;;;;;;;;;;;;;:::i;61270:124::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;61270:124:0;;:::i;62606:361::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;62606:361:0;;:::i;3129:244::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3129:244:0;;;;:::i;15839:91::-;15917:5;15910:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15884:13;;15910:12;;15917:5;;15910:12;;15917:5;15910:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15839:91;:::o;17985:169::-;18068:4;18085:39;18094:12;:10;:12::i;:::-;18108:7;18117:6;18085:8;:39::i;:::-;-1:-1:-1;18142:4:0;17985:169;;;;;:::o;52272:85::-;;;;:::o;52617:31::-;;;;;;:::o;51711:41::-;;;;;;:::o;16938:108::-;17026:12;;16938:108;:::o;52049:46::-;;;;;;;;;;;;;;;:::o;18636:321::-;18742:4;18759:36;18769:6;18777:9;18788:6;18759:9;:36::i;:::-;18806:121;18815:6;18823:12;:10;:12::i;:::-;18837:89;18875:6;18837:89;;;;;;;;;;;;;;;;;:19;;;;;;;:11;:19;;;;;;18857:12;:10;:12::i;:::-;18837:33;;;;;;;;;;;;;-1:-1:-1;18837:33:0;;;:89;:37;:89::i;:::-;18806:8;:121::i;:::-;-1:-1:-1;18945:4:0;18636:321;;;;;:::o;51852:38::-;;;;;;:::o;70391:275::-;2406:12;:10;:12::i;:::-;2395:23;;:7;:5;:7::i;:::-;:23;;;2387:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70493:1:::1;70482:7;:12;;70474:31;;;::::0;;::::1;::::0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;70535:3;70524:7;:14;;70516:35;;;::::0;;::::1;::::0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;70607:3;70597:7;70581:13;:11;:13::i;:::-;:23;:29;;;;;;70562:16;:48:::0;70626:32:::1;::::0;;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;70391:275:::0;:::o;61519:141::-;61609:15;;:43;;;;;;;;61582:7;;61609:15;;;:41;;:43;;;;;;;;;;;;;;:15;:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;61609:43:0;;-1:-1:-1;61519:141:0;:::o;16782:91::-;16856:9;;;;16782:91;:::o;62109:130::-;2406:12;:10;:12::i;:::-;2395:23;;:7;:5;:7::i;:::-;:23;;;2387:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62186:15:::1;::::0;:45:::1;::::0;;;;;:15:::1;:45:::0;;::::1;;::::0;::::1;::::0;;;:15;;;::::1;::::0;:36:::1;::::0;:45;;;;;:15:::1;::::0;:45;;;;;;;:15;;:45;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;62109:130:::0;:::o;19366:218::-;19454:4;19471:83;19480:12;:10;:12::i;:::-;19494:7;19503:50;19542:10;19503:11;:25;19515:12;:10;:12::i;:::-;19503:25;;;;;;;;;;;;;;;;;;-1:-1:-1;19503:25:0;;;:34;;;;;;;;;;;:38;:50::i;52407:38::-;;;;;;;;;:::o;70204:179::-;70254:25;70260:10;70272:6;70254:5;:25::i;:::-;70294:15;;;;:26;70329:10;70342:21;70329:10;70342:9;:21::i;:::-;70294:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70290:86;70204:179;:::o;60080:172::-;2406:12;:10;:12::i;:::-;2395:23;;:7;:5;:7::i;:::-;:23;;;2387:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60165:23:::1;::::0;::::1;;::::0;;;:14:::1;:23;::::0;;;;;;;;:31;;;::::1;::::0;::::1;;::::0;;::::1;::::0;;;60212:32;;;;;;;::::1;::::0;;;;;;;;::::1;60080:172:::0;;:::o;51785:28::-;;;;;;:::o;63367:94::-;63404:15;;:49;;;;;;63435:10;63404:49;;;;:15;:49;;;;;;;;:15;;;;;:30;;:49;;;;;;;;;;;;;;;;;;:15;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61668:126;61758:28;;61734:4;61758:28;;;:19;:28;;;;;;;;;61668:126::o;59061:193::-;2406:12;:10;:12::i;:::-;2395:23;;:7;:5;:7::i;:::-;:23;;;2387:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59171:23:::1;::::0;59148:55:::1;::::0;::::1;::::0;;::::1;::::0;59171:23:::1;::::0;::::1;;::::0;59148:55:::1;::::0;;;::::1;59214:23;:32:::0;;::::1;::::0;;::::1;;;::::0;;;::::1;::::0;;;::::1;::::0;;59061:193::o;63607:142::-;63700:15;;:41;;;;;;;;63673:7;;63700:15;;;:39;;:41;;;;;;;;;;;;;;:15;:41;;;;;;;;;;57752:632;2406:12;:10;:12::i;:::-;2395:23;;:7;:5;:7::i;:::-;:23;;;2387:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57869:15:::1;::::0;::::1;::::0;;::::1;::::0;57904:33;::::1;::::0;::::1;;57896:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58027:19;57993:54;;58015:10;57993:54;;;;;;;;;;;;58058:15;:48:::0;;;::::1;;::::0;::::1;::::0;;::::1;::::0;;;58133:37:::1;::::0;;;;;;;-1:-1:-1;;58058:48:0;58133:35:::1;::::0;:37:::1;::::0;;::::1;::::0;::::1;::::0;;;;;;;;58058:48;58133:37;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;58133:37:0;58181:4:::1;:12:::0;;;::::1;;::::0;;::::1;::::0;;;::::1;::::0;;;58247:40:::1;::::0;;;;;;;58133:37;;-1:-1:-1;;;58247:38:0;;::::1;::::0;::::1;::::0;:40:::1;::::0;;::::1;::::0;58133:37:::1;::::0;58247:40;;;;;;;;:38;:40;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;58247:40:0;58229:106:::1;::::0;;;;;58322:4:::1;58229:106;::::0;::::1;::::0;:84:::1;:106:::0;;::::1;::::0;;;;;;:84;;;::::1;::::0;::::1;::::0;:106;;;;;58247:40:::1;::::0;58229:106;;;;;;;-1:-1:-1;58229:84:0;:106;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;58229:106:0;58346:13:::1;:30:::0;;;::::1;;::::0;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;;;57752:632:0:o;61962:139::-;62059:15;;:34;;;;;;:15;:34;;;;;;;;;62032:7;;62059:15;;;;;:25;;:34;;;;;;;;;;;;;;;:15;:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;62059:34:0;;61962:139;-1:-1:-1;;61962:139:0:o;52234:31::-;;;;:::o;62975:384::-;63107:15;;:52;;;;;;;;;;;;;;63041:18;;;;;;63107:15;;;;;:23;;:52;;;;;;;;;;;;;;;63041:18;63107:15;:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;63107:52:0;;;;;;;;;;;;63175:176;;;;;;;;;;;;;;;;;63107:52;63175:176;;;;;;;63107:52;;-1:-1:-1;63107:52:0;-1:-1:-1;63107:52:0;;-1:-1:-1;63331:9:0;;63293:5;;63175:176;;;;;;;;;62975:384;;;;:::o;17109:127::-;17210:18;;17183:7;17210:18;;;;;;;;;;;;17109:127::o;2826:148::-;2406:12;:10;:12::i;:::-;2395:23;;:7;:5;:7::i;:::-;:23;;;2387:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2917:6:::1;::::0;2896:40:::1;::::0;2933:1:::1;::::0;2917:6:::1;::::0;::::1;2896:40;2917:6;::::0;2896:40:::1;::::0;2933:1;;2896:40:::1;2947:6;:19:::0;;;::::1;::::0;;2826:148::o;51899:79::-;51936:42;51899:79;:::o;60854:408::-;2406:12;:10;:12::i;:::-;2395:23;;:7;:5;:7::i;:::-;:23;;;2387:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60966:6:::1;60954:8;:18;;:40;;;;;60988:6;60976:8;:18;;60954:40;60932:118;;;::::0;;::::1;::::0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;61095:16;;61083:8;:28;;61061:88;;;::::0;;::::1;::::0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;61199:16;::::0;61165:51:::1;::::0;61189:8;;61165:51:::1;::::0;;;::::1;61227:16;:27:::0;60854:408::o;56865:879::-;2406:12;:10;:12::i;:::-;2395:23;;:7;:5;:7::i;:::-;:23;;;2387:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56988:15:::1;::::0;::::1;56966:38:::0;;::::1;56988:15:::0;::::1;56966:38;;56944:133;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57090:34;57151:10;57090:73;;57236:4;57198:43;;:18;:24;;;:26;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;57198:26:0;:43:::1;;;57176:153;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57342:18;:39;;;57390:18;57342:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;57421:54:0::1;::::0;;;;;57469:4:::1;57421:54;::::0;::::1;::::0;;;:39:::1;::::0;::::1;::::0;-1:-1:-1;57421:39:0::1;::::0;-1:-1:-1;57421:54:0;;;;;-1:-1:-1;;57421:54:0;;;;;;;-1:-1:-1;57421:39:0;:54;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;57486:18;:39;;;57526:7;:5;:7::i;:::-;57486:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;57593:15:0::1;::::0;57545:65:::1;::::0;;;;;:39:::1;57593:15:::0;;::::1;57545:65;::::0;::::1;::::0;;;:39;;::::1;::::0;-1:-1:-1;57545:39:0::1;::::0;-1:-1:-1;57545:65:0;;;;;57593:15:::1;::::0;57545:65;;;;;;;;57593:15;57545:39;:65;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;57670:15:0::1;::::0;57628:59:::1;::::0;57670:15:::1;::::0;;::::1;::::0;-1:-1:-1;57628:59:0;;::::1;::::0;-1:-1:-1;57628:59:0::1;::::0;57670:15:::1;::::0;57628:59:::1;57700:15;:36:::0;;;::::1;;::::0;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;56865:879:0:o;51759:19::-;;;;;;:::o;2175:87::-;2248:6;;;;;;;;2175:87::o;16049:95::-;16129:7;16122:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16096:13;;16122:14;;16129:7;;16122:14;;16129:7;16122:14;;;;;;;;;;;;;;;;;;;;;;;;52196:31;;;;:::o;59822:250::-;2406:12;:10;:12::i;:::-;2395:23;;:7;:5;:7::i;:::-;:23;;;2387:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59943:13:::1;::::0;::::1;59935:21:::0;;::::1;59943:13:::0;::::1;59935:21;;59913:97;;;::::0;;::::1;::::0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;60023:41;60052:4;60058:5;60023:28;:41::i;52524:40::-:0;;;;:::o;70674:204::-;2406:12;:10;:12::i;:::-;2395:23;;:7;:5;:7::i;:::-;:23;;;2387:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70771:31:::1;::::0;::::1;;::::0;;;:22:::1;:31;::::0;;;;;;;;:42;;;::::1;::::0;::::1;;::::0;;::::1;::::0;;;70829:41;;;;;;;::::1;::::0;;;;;;;;::::1;70674:204:::0;;:::o;52102:46::-;;;;;;;;;;;;;;;:::o;61402:109::-;61476:15;;:27;;;;;;;;61449:7;;61476:15;;;:25;;:27;;;;;;;;;;;;;;:15;:27;;;;;;;;;;20087:269;20180:4;20197:129;20206:12;:10;:12::i;:::-;20220:7;20229:96;20268:15;20229:96;;;;;;;;;;;;;;;;;:11;:25;20241:12;:10;:12::i;:::-;20229:25;;;;;;;;;;;;;;;;;;-1:-1:-1;20229:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;61802:152::-;61899:15;;:47;;;;;;:15;:47;;;;;;;;;61872:7;;61899:15;;;;;:38;;:47;;;;;;;;;;;;;;;:15;:47;;;;;;;;;;17449:175;17535:4;17552:42;17562:12;:10;:12::i;:::-;17576:9;17587:6;17552:9;:42::i;62247:351::-;62361:7;62383:6;62404;62425:7;62447;62469;62491;62513;62555:15;;;;;;;;;;;:26;;;62582:7;62555:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;62555:35:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;62555:35:0;;-1:-1:-1;62555:35:0;;-1:-1:-1;62555:35:0;-1:-1:-1;62555:35:0;-1:-1:-1;62555:35:0;-1:-1:-1;62555:35:0;;-1:-1:-1;62555:35:0;-1:-1:-1;62247:351:0;;;;;;;;;:::o;70886:286::-;2406:12;:10;:12::i;:::-;2395:23;;:7;:5;:7::i;:::-;:23;;;2387:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71011:16:::1;70986:21;:41;;70978:69;;;::::0;;::::1;::::0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;71058:18;:42:::0;;;71116:48:::1;::::0;;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;70886:286:::0;:::o;52983:57::-;;;;;;;;;;;;;;;:::o;60260:172::-;2406:12;:10;:12::i;:::-;2395:23;;:7;:5;:7::i;:::-;:23;;;2387:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60345:23:::1;::::0;::::1;;::::0;;;:14:::1;:23;::::0;;;;;;;;:31;;;::::1;::::0;::::1;;::::0;;::::1;::::0;;;60392:32;;;;;;;::::1;::::0;;;;;;;;::::1;60260:172:::0;;:::o;52157:32::-;;;;:::o;52573:31::-;;;;:::o;58392:327::-;2406:12;:10;:12::i;:::-;2395:23;;:7;:5;:7::i;:::-;:23;;;2387:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58499:28:::1;::::0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;::::1;;:40;;::::0;::::1;;;;58477:132;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58620:28;::::0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;;::::1;::::0;::::1;;::::0;;::::1;::::0;;;58677:34;;;;;;;::::1;::::0;;;;;;;;::::1;58392:327:::0;;:::o;58727:326::-;2406:12;:10;:12::i;:::-;2395:23;;:7;:5;:7::i;:::-;:23;;;2387:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58866:9:::1;58861:116;58885:8;:15;58881:1;:19;58861:116;;;58957:8;58922:19;:32;58942:8;58951:1;58942:11;;;;;;;;;::::0;;::::1;::::0;;;;;;;58922:32:::1;;::::0;;;::::1;::::0;;;;;;-1:-1:-1;58922:32:0;:43;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;-1:-1:-1;58902:3:0::1;58861:116;;;;58994:51;59026:8;59036;58994:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;;::::1;::::0;;;::::1;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;58727:326:::0;;:::o;55199:1621::-;2406:12;:10;:12::i;:::-;2395:23;;:7;:5;:7::i;:::-;:23;;;2387:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55290:11:::1;::::0;::::1;;55289:12;55281:36;;;::::0;;::::1;::::0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;55328:11;:18:::0;;55342:4:::1;55328:18:::0;;;::::1;::::0;::::1;::::0;;;55442:15:::1;:34:::0;;;::::1;;::::0;;::::1;::::0;;;::::1;::::0;;;55514:13:::1;::::0;55442:34;;55514:13;::::1;::::0;55540:50:::1;::::0;55514:13;;55540:28:::1;:50::i;:::-;55603:14;55620:7;:5;:7::i;:::-;55603:24;;55685:16;:37;;;55731:16;55685:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;55760:52:0::1;::::0;;;;;55806:4:::1;55760:52;::::0;::::1;::::0;;;:37:::1;::::0;::::1;::::0;-1:-1:-1;55760:37:0::1;::::0;-1:-1:-1;55760:52:0;;;;;-1:-1:-1;;55760:52:0;;;;;;;-1:-1:-1;55760:37:0;:52;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;55823:16;:37;;;55861:6;55823:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;55879:49:0::1;::::0;;;;;51936:42:::1;55879:49;::::0;::::1;::::0;;;:37:::1;::::0;::::1;::::0;-1:-1:-1;55879:37:0::1;::::0;-1:-1:-1;55879:49:0;;;;;-1:-1:-1;;55879:49:0;;;;;;;-1:-1:-1;55879:37:0;:49;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;55985:15:0::1;::::0;55939:63:::1;::::0;;;;;:37:::1;55985:15:::0;;::::1;55939:63;::::0;::::1;::::0;;;:37;;::::1;::::0;-1:-1:-1;55939:37:0::1;::::0;-1:-1:-1;55939:63:0;;;;;55985:15:::1;::::0;55939:63;;;;;;;;55985:15;55939:37;:63;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;56085:29;56101:6;56109:4;56085:15;:29::i;:::-;56141:23;::::0;56125:46:::1;::::0;56141:23:::1;::::0;::::1;;;;56125:15;:46::i;:::-;56182:36;56206:4;56213;56182:15;:36::i;:::-;56231:38;::::0;;::::1;;::::0;;;:22:::1;:38;::::0;;;;;:45;;56272:4:::1;56231:45:::0;;;::::1;::::0;::::1;::::0;;;56318:4:::1;56287:37:::0;;;;;:44;;;::::1;::::0;::::1;::::0;;56365:23:::1;::::0;;56231:45:::1;56365:23:::0;;;::::1;::::0;::::1;56342:47:::0;;;;;:54;;;;::::1;::::0;;::::1;::::0;;;56449:23;56414:59;;56449:23;::::1;::::0;;::::1;::::0;56414:59:::1;::::0;56231:38;;56414:59:::1;56501:10;56486:26;::::0;;;:14:::1;:26;::::0;;;;:33;;;::::1;56515:4;56486:33;::::0;;56530:17:::1;56545:1;56530:14;:17::i;:::-;56711:46;56717:6;56725:31;56711:5;:46::i;:::-;56809:3;56789:13;:11;:13::i;:::-;56805:1;56789:17;:23;;;;;;56770:16;:42:::0;-1:-1:-1;;;;55199:1621:0:o;52657:54::-;;;;;;;;;;;;;;;:::o;63757:77::-;2406:12;:10;:12::i;:::-;2395:23;;:7;:5;:7::i;:::-;:23;;;2387:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63808:11:::1;:18:::0;;;::::1;63822:4;63808:18;::::0;;63757:77::o;59264:550::-;2406:12;:10;:12::i;:::-;2395:23;;:7;:5;:7::i;:::-;:23;;;2387:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59487:2:::1;59470:13;59454;59437:14;:30;:46;:52;;59415:120;;;::::0;;::::1;::::0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;59548:13;:30:::0;;;59589:12:::1;:28:::0;;;59628:12:::1;:28:::0;;;59679:52:::1;59643:13:::0;59679:33:::1;59564:14:::0;59604:13;59679:18:::1;:33::i;:::-;:37:::0;::::1;:52::i;:::-;59667:9;:64:::0;59749:57:::1;::::0;;;;;::::1;::::0;::::1;::::0;;;;;;;;;;;::::1;::::0;;;;;;;::::1;59264:550:::0;;;:::o;17687:151::-;17803:18;;;;17776:7;17803:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;17687:151::o;51987:53::-;;;;:::o;63469:130::-;63552:15;;:39;;;;;;;;63525:7;;63552:15;;;:37;;:39;;;;;;;;;;;;;;:15;:39;;;;;;;;;;61270:124;2406:12;:10;:12::i;:::-;2395:23;;:7;:5;:7::i;:::-;:23;;;2387:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61344:15:::1;::::0;:42:::1;::::0;;;;;::::1;::::0;::::1;::::0;;;;;:15:::1;::::0;;::::1;::::0;:31:::1;::::0;:42;;;;;:15:::1;::::0;:42;;;;;;;;:15;;:42;::::1;;::::0;::::1;;;;::::0;::::1;62606:361:::0;62725:7;62747:6;62768;62789:7;62811;62833;62855;62877;62919:15;;;;;;;;;;;:33;;;62953:5;62919:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3129:244;2406:12;:10;:12::i;:::-;2395:23;;:7;:5;:7::i;:::-;:23;;;2387:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3218:22:::1;::::0;::::1;3210:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3320:6;::::0;3299:38:::1;::::0;::::1;::::0;;::::1;::::0;3320:6:::1;::::0;::::1;;::::0;3299:38:::1;::::0;;;::::1;3348:6;:17:::0;;::::1;::::0;;::::1;;;::::0;;;::::1;::::0;;;::::1;::::0;;3129:244::o;6183:179::-;6241:7;6273:5;;;6297:6;;;;6289:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6353:1;6183:179;-1:-1:-1;;;6183:179:0:o;704:106::-;792:10;704:106;:::o;23234:346::-;23336:19;;;23328:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23415:21;;;23407:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23488:18;;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;23540:32;;;;;;;;;;;;;;;;;23234:346;;;:::o;63842:3216::-;63974:18;;;63966:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64046:16;;;64038:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64115:20;;;;;;;:14;:20;;;;;;;;64114:21;:44;;;;-1:-1:-1;64140:18:0;;;;;;;:14;:18;;;;;;;;64139:19;64114:44;64106:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64192:20;;;;;;;:14;:20;;;;;;;;64191:21;:44;;;;-1:-1:-1;64217:18:0;;;;;;;:14;:18;;;;;;;;64216:19;64191:44;64187:112;;;64260:11;;;;64252:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64315:11;64311:93;;64343:28;64359:4;64365:2;64369:1;64343:15;:28::i;:::-;64386:7;;64311:93;64416:28;64447:24;64465:4;64447:9;:24::i;:::-;64523:18;;64416:55;;-1:-1:-1;64499:42:0;;;64484:12;64571:7;:5;:7::i;:::-;64606:8;;64646:9;;64554:24;;-1:-1:-1;64606:8:0;;;;;;64684:7;:34;;;;;64709:9;64708:10;64684:34;:83;;;;-1:-1:-1;64736:31:0;;;;;;;:25;:31;;;;;;;;64735:32;64684:83;:114;;;;;64792:6;64784:14;;:4;:14;;;;64684:114;:143;;;;;64821:6;64815:12;;:2;:12;;;;64684:143;64666:660;;;64854:8;:15;;;;;;;;64937:12;;64854:15;;64912:54;;64955:10;;64912:38;;:20;;:24;:38::i;:::-;:42;;:54::i;:::-;64886:80;;64981:58;64998:15;65015:23;;;;;;;;;;;64981:16;:58::i;:::-;65056:18;65077:54;65120:10;65077:38;65102:12;;65077:20;:24;;:38;;;;:::i;:54::-;65056:75;;65146:26;65161:10;65146:14;:26::i;:::-;65189:18;65210:24;65228:4;65210:9;:24::i;:::-;65189:45;;65249:32;65270:10;65249:20;:32::i;:::-;-1:-1:-1;;65298:8:0;:16;;;;;;-1:-1:-1;64666:660:0;65354:8;;65485:31;;;65338:12;65485:31;;;:25;:31;;;;;;65354:8;;;;;;;65353:9;;65485:31;;:64;;-1:-1:-1;65520:29:0;;;;;;;:25;:29;;;;;;;;65485:64;65483:67;:96;;;-1:-1:-1;65554:25:0;;;;;;;:19;:25;;;;;;;;65483:96;:123;;;-1:-1:-1;65583:23:0;;;;;;;:19;:23;;;;;;;;65483:123;65479:171;;;-1:-1:-1;65633:5:0;65479:171;65666:7;65662:299;;;65690:12;65705:31;65732:3;65705:22;:6;65716:10;65705;:22::i;:31::-;65755:29;;;;;;;:25;:29;;;;;;65690:46;;-1:-1:-1;65755:29:0;;65751:100;;;65813:22;65831:3;65813:13;:6;65824:1;65813:10;:13::i;:22::-;65805:30;65751:100;65874:16;:6;65885:4;65874:10;:16::i;:::-;65865:25;;65907:42;65923:4;65937;65944;65907:15;:42::i;:::-;65662:299;;65973:33;65989:4;65995:2;65999:6;65973:15;:33::i;:::-;66021:26;;;;;;;:22;:26;;;;;;;;66017:132;;66089:16;;66072:13;66082:2;66072:9;:13::i;:::-;:33;;66064:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66196:15;;;;;66222:27;66258:4;66265:15;66258:4;66265:9;:15::i;:::-;66222:59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66292:16;:27;;;66328:2;66333:13;66343:2;66333:9;:13::i;:::-;66292:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66381:16;;66400:6;66381:25;66368:9;:38;;66360:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66445:9;66440:611;;66485:16;;66522:29;;;;;;;;;;;;;;:24;;;;;;:29;;;;;;;;;;;;;;66471:11;66522:24;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;66522:29:0;;;;;;;;;;;;;;;;66518:522;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67013:11;67019:4;67013:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66963:77;66518:522;;;66715:231;;;;;;;;;;;;;;;;;;;;;;;;;;66918:9;;66865:4;;66715:231;;;;;;;;;66552:410;;;66518:522;66440:611;;63842:3216;;;;;;;;;;;:::o;9010:166::-;9096:7;9132:12;9124:6;;;;9116:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;9163:5:0;;;9010:166::o;22378:418::-;22462:21;;;22454:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22534:49;22555:7;22572:1;22576:6;22534:20;:49::i;:::-;22617:68;22640:6;22617:68;;;;;;;;;;;;;;;;;:18;;;:9;:18;;;;;;;;;;;;:68;:22;:68::i;:::-;22596:18;;;:9;:18;;;;;;;;;;:89;22711:12;;:24;;22728:6;22711:16;:24::i;:::-;22696:12;:39;22751:37;;;;;;;;22777:1;;22751:37;;;;;;;;;;;;;22378:418;;:::o;60440:406::-;60545:31;;;;;;;:25;:31;;;;;;;;:40;;;;;;;60523:115;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60649:31;;;;;;;:25;:31;;;;;:39;;;;;;;;;;;;;;;60701:80;;60727:15;;:42;;;;;;:15;:42;;;;;;;;;:15;;;;;:36;;:42;;;;;:15;;:42;;;;;;;:15;;:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60701:80;60798:40;;;;;;;;;;;;;;;60440:406;;:::o;23912:98::-;23981:9;:21;;;;;;;;;;;;;;;23912:98::o;21667:378::-;21751:21;;;21743:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21821:49;21850:1;21854:7;21863:6;21821:20;:49::i;:::-;21898:12;;:24;;21915:6;21898:16;:24::i;:::-;21883:12;:39;21954:18;;;:9;:18;;;;;;;;;;;:30;;21977:6;21954:22;:30::i;:::-;21933:18;;;:9;:18;;;;;;;;;;;:51;;;;22000:37;;;;;;;21933:18;;:9;;22000:37;;;;;;;;;;21667:378;;:::o;20846:539::-;20952:20;;;20944:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21033:23;;;21025:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21109:47;21130:6;21138:9;21149:6;21109:20;:47::i;:::-;21189:71;21211:6;21189:71;;;;;;;;;;;;;;;;;:17;;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;21169:17;;;;:9;:17;;;;;;;;;;;:91;;;;21294:20;;;;;;;:32;;21319:6;21294:24;:32::i;:::-;21271:20;;;;:9;:20;;;;;;;;;;;;:55;;;;21342:35;;;;;;;21271:20;;21342:35;;;;;;;;;;;;;20846:539;;;:::o;7062:220::-;7120:7;7144:6;7140:20;;-1:-1:-1;7159:1:0;7152:8;;7140:20;7183:5;;;7187:1;7183;:5;:1;7207:5;;;;;:10;7199:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7760:153;7818:7;7850:1;7846;:5;7838:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7904:1;7900;:5;;;;;;;7760:153;-1:-1:-1;;;7760:153:0:o;67066:378::-;67157:4;;;;67200:21;67234:24;67251:6;67234:16;:24::i;:::-;67271:17;67291:44;:21;67317:17;67291:25;:44::i;:::-;67271:64;;67352:5;67346:20;;;67374:9;67346:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67404:5;67397:22;;;67420:4;67426:9;67397:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;67066:378:0:o;67452:923::-;67562:12;67577:13;:6;67588:1;67577:10;:13::i;:::-;67562:28;-1:-1:-1;67601:17:0;67621:16;:6;67562:28;67621:10;:16::i;:::-;67601:36;-1:-1:-1;67940:21:0;68006:22;68023:4;68006:16;:22::i;:::-;68159:18;68180:41;:21;68206:14;68180:25;:41::i;:::-;68159:62;;68271:35;68284:9;68295:10;68271:12;:35::i;:::-;68324:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67452:923;;;;;:::o;69622:574::-;69687:24;69704:6;69687:16;:24::i;:::-;69740:4;;69790:15;;69874:47;;;;;;69838:21;69874:47;;;;;;;;69740:4;;;;;69790:15;;;;;;69874:36;;:47;;;;;-1:-1:-1;;69874:47:0;;;;;;;-1:-1:-1;69790:15:0;69874:47;;;;;;;;;;;;;;;;;;;;;;;;;69870:317;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70164:11;70170:4;70164:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70119:68;69870:317;;;69943:5;69937:20;;;69965:9;69937:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70001:5;69994:22;;;70025:16;70044:9;69994:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;70074:32:0;;;;;;69994:60;70074:32;;;;;;;;;;;;;;;;;;69870:317;69622:574;;;;:::o;6645:158::-;6703:7;6736:1;6731;:6;;6723:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6790:5:0;;;6645:158::o;68383:639::-;68487:15;;68599:16;;;68613:1;68599:16;;;68575:21;68599:16;;;;;68487:15;;;;;68575:21;68599:16;;;;;;;;;;-1:-1:-1;68599:16:0;68575:40;;68644:4;68626;68631:1;68626:7;;;;;;;;:23;;;;:7;;;;;;;;;:23;68670:4;;68660:7;;68670:4;;;68660;;68670;;68660:7;;;;;;;;;;;:14;;;;;;;;;;;68687:63;68704:4;68719:16;68738:11;68687:8;:63::i;:::-;68789:16;:67;;;68871:11;68897:1;68941:4;68968;68988:15;68789:225;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69030:584;69149:15;;;;69244:63;69261:4;69149:15;69295:11;69244:8;:63::i;:::-;69350:256;;;;;;69423:4;69350:256;;;;;;;;;;69469:1;69350:256;;;;;;;;;;;;;;;;69580:15;69350:256;;;;;;:32;;;;;;69390:9;;69350:256;;;;;;;;;;;;;;;69390:9;69350:32;:256;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

Swarm Source

ipfs://d08e80ba75af328b87255ce91f980ca393a5bcb8c836d57ce61b4c84a1324edf
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.