ETH Price: $3,382.51 (-1.79%)
Gas: 2 Gwei

Token

Shiba Nodes (SHINO)
 

Overview

Max Total Supply

1,000,000,000 SHINO

Holders

280

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.426911643829982045 SHINO

Value
$0.00
0x221a744df39f25df3eac9389f47d31d5dacf0041
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
SHINO

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-01-28
*/

/* Introducing Shiba Nodes (SHINO), the newest addition to the Shibarium network.
Shiba Nodes will be responsible for verifying transactions, maintaining
a copy of the blockchain, and participating in the consensus process. 
In return for these services, validators are rewarded with a share of the network’s transaction fees.*/

// → Telegram: https://t.me/ShibaNodesERC
// → Twitter:  https://twitter.com/ShibaNodesERC
// → Website:  https://shibanodes.io/
// → Medium:   https://medium.com/@ShibaNodes
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.10;
pragma experimental ABIEncoderV2;

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

/* pragma solidity ^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 meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

////// lib/openzeppelin-contracts/contracts/access/Ownable.sol
// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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


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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    bool private swapping;

    address private devWallet;

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

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

    uint256 public buyTotalFees;
    uint256 public buydevfee;
    uint256 public buyLiquidityFee;

    uint256 public sellTotalFees;
    uint256 public selldevfee;
    uint256 public sellLiquidityFee;

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

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


    event ExcludeFromFees(address indexed account, bool isExcluded);

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

    constructor() ERC20("Shiba Nodes", "SHINO") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

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

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


        uint256 _buydevfee = 20;
        uint256 _buyLiquidityFee = 5;

        uint256 _selldevfee = 20;
        uint256 _sellLiquidityFee = 5;

        uint256 totalSupply = 1_000_000_000 * 1e18;

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

        buydevfee = _buydevfee;
        buyLiquidityFee = _buyLiquidityFee;
        buyTotalFees = buydevfee + buyLiquidityFee;

        selldevfee = _selldevfee;
        sellLiquidityFee = _sellLiquidityFee;
        sellTotalFees = selldevfee + sellLiquidityFee;

        devWallet = address(msg.sender); // set as dev wallet

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

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

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

    receive() external payable {}

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

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

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

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

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

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

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

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

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

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

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


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

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

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

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

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

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

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

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

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

            amount -= fees;
        }

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

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

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

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

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

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

        swapTokensForETH(contractBalance);
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"inputs":[],"name":"ETH","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buydevfee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"selldevfee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_devfee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newDevWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_devfee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c060405273c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600b60006101000a81548160ff0219169083151502179055506000600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff021916908315150217905550348015620000b757600080fd5b506040518060400160405280600b81526020017f5368696261204e6f6465730000000000000000000000000000000000000000008152506040518060400160405280600581526020017f5348494e4f000000000000000000000000000000000000000000000000000000815250816003908162000135919062000c14565b50806004908162000147919062000c14565b5050506200016a6200015e620004fc60201b60201c565b6200050460201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d905062000196816001620005ca60201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000216573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200023c919062000d65565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518363ffffffff1660e01b81526004016200029a92919062000da8565b6020604051808303816000875af1158015620002ba573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002e0919062000d65565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200032860a0516001620005ca60201b60201c565b60006014905060006005905060006014905060006005905060006b033b2e3c9fd0803ce800000090506103e860148262000363919062000e04565b6200036f919062000e7e565b6008819055506103e860148262000387919062000e04565b62000393919062000e7e565b600a81905550612710600582620003ab919062000e04565b620003b7919062000e7e565b60098190555084600d8190555083600e81905550600e54600d54620003dd919062000eb6565b600c81905550826010819055508160118190555060115460105462000403919062000eb6565b600f8190555033600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200046c6200045e620006b460201b60201c565b6001620006de60201b60201c565b6200047f306001620006de60201b60201c565b6200049461dead6001620006de60201b60201c565b620004b6620004a8620006b460201b60201c565b6001620005ca60201b60201c565b620004c9306001620005ca60201b60201c565b620004de61dead6001620005ca60201b60201c565b620004f033826200081860201b60201c565b5050505050506200104e565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620005da620004fc60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000600620006b460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000659576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006509062000f52565b60405180910390fd5b80601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620006ee620004fc60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000714620006b460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200076d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007649062000f52565b60405180910390fd5b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516200080c919062000f91565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200088a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008819062000ffe565b60405180910390fd5b6200089e600083836200099060201b60201c565b8060026000828254620008b2919062000eb6565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000909919062000eb6565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000970919062001031565b60405180910390a36200098c600083836200099560201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000a1c57607f821691505b60208210810362000a325762000a31620009d4565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000a9c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000a5d565b62000aa8868362000a5d565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000af562000aef62000ae98462000ac0565b62000aca565b62000ac0565b9050919050565b6000819050919050565b62000b118362000ad4565b62000b2962000b208262000afc565b84845462000a6a565b825550505050565b600090565b62000b4062000b31565b62000b4d81848462000b06565b505050565b5b8181101562000b755762000b6960008262000b36565b60018101905062000b53565b5050565b601f82111562000bc45762000b8e8162000a38565b62000b998462000a4d565b8101602085101562000ba9578190505b62000bc162000bb88562000a4d565b83018262000b52565b50505b505050565b600082821c905092915050565b600062000be96000198460080262000bc9565b1980831691505092915050565b600062000c04838362000bd6565b9150826002028217905092915050565b62000c1f826200099a565b67ffffffffffffffff81111562000c3b5762000c3a620009a5565b5b62000c47825462000a03565b62000c5482828562000b79565b600060209050601f83116001811462000c8c576000841562000c77578287015190505b62000c83858262000bf6565b86555062000cf3565b601f19841662000c9c8662000a38565b60005b8281101562000cc65784890151825560018201915060208501945060208101905062000c9f565b8683101562000ce6578489015162000ce2601f89168262000bd6565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000d2d8262000d00565b9050919050565b62000d3f8162000d20565b811462000d4b57600080fd5b50565b60008151905062000d5f8162000d34565b92915050565b60006020828403121562000d7e5762000d7d62000cfb565b5b600062000d8e8482850162000d4e565b91505092915050565b62000da28162000d20565b82525050565b600060408201905062000dbf600083018562000d97565b62000dce602083018462000d97565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000e118262000ac0565b915062000e1e8362000ac0565b925082820262000e2e8162000ac0565b9150828204841483151762000e485762000e4762000dd5565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000e8b8262000ac0565b915062000e988362000ac0565b92508262000eab5762000eaa62000e4f565b5b828204905092915050565b600062000ec38262000ac0565b915062000ed08362000ac0565b925082820190508082111562000eeb5762000eea62000dd5565b5b92915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000f3a60208362000ef1565b915062000f478262000f02565b602082019050919050565b6000602082019050818103600083015262000f6d8162000f2b565b9050919050565b60008115159050919050565b62000f8b8162000f74565b82525050565b600060208201905062000fa8600083018462000f80565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000fe6601f8362000ef1565b915062000ff38262000fae565b602082019050919050565b60006020820190508181036000830152620010198162000fd7565b9050919050565b6200102b8162000ac0565b82525050565b600060208201905062001048600083018462001020565b92915050565b60805160a051613bb9620010a560003960008181610ed101528181611f120152818161215b0152818161236601528181612431015261251b015260008181610b4b01528181612a460152612a6d0152613bb96000f3fe60806040526004361061024a5760003560e01c8063715018a611610139578063c0246668116100b6578063dd62ed3e1161007a578063dd62ed3e1461087d578063e2f45605146108ba578063f11a24d3146108e5578063f2fde38b14610910578063f637434214610939578063f8b45b051461096457610251565b8063c024666814610798578063c18bc195146107c1578063c8c8ebe4146107ea578063d257b34f14610815578063d85ba0631461085257610251565b80638da5cb5b116100fd5780638da5cb5b146106b1578063924de9b7146106dc57806395d89b4114610705578063a9059cbb14610730578063bbc0c7421461076d57610251565b8063715018a614610604578063751039fc1461061b5780637571336a146106465780638322fff21461066f5780638a8c523c1461069a57610251565b8063313ce567116101c757806365c1bef81161018b57806365c1bef81461051d57806366ca9b83146105485780636a486a8e146105715780636ddd17131461059c57806370a08231146105c757610251565b8063313ce56714610434578063489ae78d1461045f57806349bd5a5e1461048a5780634a62bb65146104b55780634fbee193146104e057610251565b806318160ddd1161020e57806318160ddd1461034f5780631816467f1461037a578063203e727e146103a357806323b872dd146103cc57806327c8f8351461040957610251565b806302dbd8f81461025657806306fdde031461027f578063095ea7b3146102aa57806310d5de53146102e75780631694505e1461032457610251565b3661025157005b600080fd5b34801561026257600080fd5b5061027d60048036038101906102789190612b60565b61098f565b005b34801561028b57600080fd5b50610294610a79565b6040516102a19190612c30565b60405180910390f35b3480156102b657600080fd5b506102d160048036038101906102cc9190612cb0565b610b0b565b6040516102de9190612d0b565b60405180910390f35b3480156102f357600080fd5b5061030e60048036038101906103099190612d26565b610b29565b60405161031b9190612d0b565b60405180910390f35b34801561033057600080fd5b50610339610b49565b6040516103469190612db2565b60405180910390f35b34801561035b57600080fd5b50610364610b6d565b6040516103719190612ddc565b60405180910390f35b34801561038657600080fd5b506103a1600480360381019061039c9190612d26565b610b77565b005b3480156103af57600080fd5b506103ca60048036038101906103c59190612df7565b610cb3565b005b3480156103d857600080fd5b506103f360048036038101906103ee9190612e24565b610dc2565b6040516104009190612d0b565b60405180910390f35b34801561041557600080fd5b5061041e610eba565b60405161042b9190612e86565b60405180910390f35b34801561044057600080fd5b50610449610ec0565b6040516104569190612ebd565b60405180910390f35b34801561046b57600080fd5b50610474610ec9565b6040516104819190612ddc565b60405180910390f35b34801561049657600080fd5b5061049f610ecf565b6040516104ac9190612e86565b60405180910390f35b3480156104c157600080fd5b506104ca610ef3565b6040516104d79190612d0b565b60405180910390f35b3480156104ec57600080fd5b5061050760048036038101906105029190612d26565b610f06565b6040516105149190612d0b565b60405180910390f35b34801561052957600080fd5b50610532610f5c565b60405161053f9190612ddc565b60405180910390f35b34801561055457600080fd5b5061056f600480360381019061056a9190612b60565b610f62565b005b34801561057d57600080fd5b5061058661104c565b6040516105939190612ddc565b60405180910390f35b3480156105a857600080fd5b506105b1611052565b6040516105be9190612d0b565b60405180910390f35b3480156105d357600080fd5b506105ee60048036038101906105e99190612d26565b611065565b6040516105fb9190612ddc565b60405180910390f35b34801561061057600080fd5b506106196110ad565b005b34801561062757600080fd5b50610630611135565b60405161063d9190612d0b565b60405180910390f35b34801561065257600080fd5b5061066d60048036038101906106689190612f04565b6111d5565b005b34801561067b57600080fd5b506106846112ac565b6040516106919190612e86565b60405180910390f35b3480156106a657600080fd5b506106af6112d2565b005b3480156106bd57600080fd5b506106c6611386565b6040516106d39190612e86565b60405180910390f35b3480156106e857600080fd5b5061070360048036038101906106fe9190612f44565b6113b0565b005b34801561071157600080fd5b5061071a611449565b6040516107279190612c30565b60405180910390f35b34801561073c57600080fd5b5061075760048036038101906107529190612cb0565b6114db565b6040516107649190612d0b565b60405180910390f35b34801561077957600080fd5b506107826114f9565b60405161078f9190612d0b565b60405180910390f35b3480156107a457600080fd5b506107bf60048036038101906107ba9190612f04565b61150c565b005b3480156107cd57600080fd5b506107e860048036038101906107e39190612df7565b611631565b005b3480156107f657600080fd5b506107ff611740565b60405161080c9190612ddc565b60405180910390f35b34801561082157600080fd5b5061083c60048036038101906108379190612df7565b611746565b6040516108499190612d0b565b60405180910390f35b34801561085e57600080fd5b5061086761189b565b6040516108749190612ddc565b60405180910390f35b34801561088957600080fd5b506108a4600480360381019061089f9190612f71565b6118a1565b6040516108b19190612ddc565b60405180910390f35b3480156108c657600080fd5b506108cf611928565b6040516108dc9190612ddc565b60405180910390f35b3480156108f157600080fd5b506108fa61192e565b6040516109079190612ddc565b60405180910390f35b34801561091c57600080fd5b5061093760048036038101906109329190612d26565b611934565b005b34801561094557600080fd5b5061094e611a2b565b60405161095b9190612ddc565b60405180910390f35b34801561097057600080fd5b50610979611a31565b6040516109869190612ddc565b60405180910390f35b610997611a37565b73ffffffffffffffffffffffffffffffffffffffff166109b5611386565b73ffffffffffffffffffffffffffffffffffffffff1614610a0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0290612ffd565b60405180910390fd5b8160108190555080601181905550601154601054610a29919061304c565b600f819055506032600f541115610a75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6c906130cc565b60405180910390fd5b5050565b606060038054610a889061311b565b80601f0160208091040260200160405190810160405280929190818152602001828054610ab49061311b565b8015610b015780601f10610ad657610100808354040283529160200191610b01565b820191906000526020600020905b815481529060010190602001808311610ae457829003601f168201915b5050505050905090565b6000610b1f610b18611a37565b8484611a3f565b6001905092915050565b60136020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610b7f611a37565b73ffffffffffffffffffffffffffffffffffffffff16610b9d611386565b73ffffffffffffffffffffffffffffffffffffffff1614610bf3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bea90612ffd565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610cbb611a37565b73ffffffffffffffffffffffffffffffffffffffff16610cd9611386565b73ffffffffffffffffffffffffffffffffffffffff1614610d2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2690612ffd565b60405180910390fd5b670de0b6b3a76400006103e86005610d45610b6d565b610d4f919061314c565b610d5991906131bd565b610d6391906131bd565b811015610da5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9c90613260565b60405180910390fd5b670de0b6b3a764000081610db9919061314c565b60088190555050565b6000610dcf848484611c08565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610e1a611a37565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610e9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e91906132f2565b60405180910390fd5b610eae85610ea6611a37565b858403611a3f565b60019150509392505050565b61dead81565b60006012905090565b600d5481565b7f000000000000000000000000000000000000000000000000000000000000000081565b600b60009054906101000a900460ff1681565b6000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60105481565b610f6a611a37565b73ffffffffffffffffffffffffffffffffffffffff16610f88611386565b73ffffffffffffffffffffffffffffffffffffffff1614610fde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd590612ffd565b60405180910390fd5b81600d8190555080600e81905550600e54600d54610ffc919061304c565b600c81905550601e600c541115611048576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103f906130cc565b60405180910390fd5b5050565b600f5481565b600b60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6110b5611a37565b73ffffffffffffffffffffffffffffffffffffffff166110d3611386565b73ffffffffffffffffffffffffffffffffffffffff1614611129576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112090612ffd565b60405180910390fd5b6111336000612567565b565b600061113f611a37565b73ffffffffffffffffffffffffffffffffffffffff1661115d611386565b73ffffffffffffffffffffffffffffffffffffffff16146111b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111aa90612ffd565b60405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055506001905090565b6111dd611a37565b73ffffffffffffffffffffffffffffffffffffffff166111fb611386565b73ffffffffffffffffffffffffffffffffffffffff1614611251576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124890612ffd565b60405180910390fd5b80601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6112da611a37565b73ffffffffffffffffffffffffffffffffffffffff166112f8611386565b73ffffffffffffffffffffffffffffffffffffffff161461134e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134590612ffd565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6113b8611a37565b73ffffffffffffffffffffffffffffffffffffffff166113d6611386565b73ffffffffffffffffffffffffffffffffffffffff161461142c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142390612ffd565b60405180910390fd5b80600b60026101000a81548160ff02191690831515021790555050565b6060600480546114589061311b565b80601f01602080910402602001604051908101604052809291908181526020018280546114849061311b565b80156114d15780601f106114a6576101008083540402835291602001916114d1565b820191906000526020600020905b8154815290600101906020018083116114b457829003601f168201915b5050505050905090565b60006114ef6114e8611a37565b8484611c08565b6001905092915050565b600b60019054906101000a900460ff1681565b611514611a37565b73ffffffffffffffffffffffffffffffffffffffff16611532611386565b73ffffffffffffffffffffffffffffffffffffffff1614611588576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157f90612ffd565b60405180910390fd5b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516116259190612d0b565b60405180910390a25050565b611639611a37565b73ffffffffffffffffffffffffffffffffffffffff16611657611386565b73ffffffffffffffffffffffffffffffffffffffff16146116ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a490612ffd565b60405180910390fd5b670de0b6b3a76400006103e860056116c3610b6d565b6116cd919061314c565b6116d791906131bd565b6116e191906131bd565b811015611723576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171a90613384565b60405180910390fd5b670de0b6b3a764000081611737919061314c565b600a8190555050565b60085481565b6000611750611a37565b73ffffffffffffffffffffffffffffffffffffffff1661176e611386565b73ffffffffffffffffffffffffffffffffffffffff16146117c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117bb90612ffd565b60405180910390fd5b620186a060016117d2610b6d565b6117dc919061314c565b6117e691906131bd565b821015611828576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181f90613416565b60405180910390fd5b6103e86005611835610b6d565b61183f919061314c565b61184991906131bd565b82111561188b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611882906134a8565b60405180910390fd5b8160098190555060019050919050565b600c5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b600e5481565b61193c611a37565b73ffffffffffffffffffffffffffffffffffffffff1661195a611386565b73ffffffffffffffffffffffffffffffffffffffff16146119b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a790612ffd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611a1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a169061353a565b60405180910390fd5b611a2881612567565b50565b60115481565b600a5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611aae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa5906135cc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b149061365e565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611bfb9190612ddc565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611c77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6e906136f0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ce6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cdd90613782565b60405180910390fd5b60008103611cff57611cfa8383600061262d565b612562565b600b60009054906101000a900460ff161561210957611d1c611386565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611d8a5750611d5a611386565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611dc35750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611dfd575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611e165750600660149054906101000a900460ff16155b1561210857600b60019054906101000a900460ff16611f1057601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611ed05750601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611f0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f06906137ee565b60405180910390fd5b5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148015611fb55750601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561205c57600854811115611fff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff690613880565b60405180910390fd5b600a5461200b83611065565b82612016919061304c565b1115612057576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204e906138ec565b60405180910390fd5b612107565b601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661210657600a546120b983611065565b826120c4919061304c565b1115612105576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120fc906138ec565b60405180910390fd5b5b5b5b5b600061211430611065565b9050600060095482101590508080156121395750600b60029054906101000a900460ff165b80156121525750600660149054906101000a900460ff16155b80156121a957507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b80156121ff5750601260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156122555750601260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612299576001600660146101000a81548160ff02191690831515021790555061227d6128ac565b6000600660146101000a81548160ff0219169083151502179055505b6000600660149054906101000a900460ff16159050601260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061234f5750601260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561235957600090505b60008060008315612550577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff161480156123c157506000600f54115b1561242f576123ee60646123e0600f548a6128fc90919063ffffffff16565b61291290919063ffffffff16565b9250600f5460115484612401919061314c565b61240b91906131bd565b9150600f546010548461241e919061314c565b61242891906131bd565b90506124f7565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff1614801561248c57506000600c54115b156124f6576124b960646124ab600c548a6128fc90919063ffffffff16565b61291290919063ffffffff16565b9250600c54600e54846124cc919061314c565b6124d691906131bd565b9150600c54600d54846124e9919061314c565b6124f391906131bd565b90505b5b600083111561250c5761250b89308561262d565b5b600082111561254157612540307f00000000000000000000000000000000000000000000000000000000000000008461262d565b5b828761254d919061390c565b96505b61255b89898961262d565b5050505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361269c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612693906136f0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361270b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270290613782565b60405180910390fd5b612716838383612928565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561279c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612793906139b2565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461282f919061304c565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516128939190612ddc565b60405180910390a36128a684848461292d565b50505050565b60006128b730611065565b9050600081036128c757506128fa565b60146009546128d6919061314c565b8111156128ef5760146009546128ec919061314c565b90505b6128f881612932565b505b565b6000818361290a919061314c565b905092915050565b6000818361292091906131bd565b905092915050565b505050565b505050565b6000600267ffffffffffffffff81111561294f5761294e6139d2565b5b60405190808252806020026020018201604052801561297d5781602001602082028036833780820191505090505b509050308160008151811061299557612994613a01565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681600181518110612a0657612a05613a01565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612a6b307f000000000000000000000000000000000000000000000000000000000000000084611a3f565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16635c11d79583600084600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b8152600401612aef959493929190613b29565b600060405180830381600087803b158015612b0957600080fd5b505af1158015612b1d573d6000803e3d6000fd5b505050505050565b600080fd5b6000819050919050565b612b3d81612b2a565b8114612b4857600080fd5b50565b600081359050612b5a81612b34565b92915050565b60008060408385031215612b7757612b76612b25565b5b6000612b8585828601612b4b565b9250506020612b9685828601612b4b565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612bda578082015181840152602081019050612bbf565b60008484015250505050565b6000601f19601f8301169050919050565b6000612c0282612ba0565b612c0c8185612bab565b9350612c1c818560208601612bbc565b612c2581612be6565b840191505092915050565b60006020820190508181036000830152612c4a8184612bf7565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612c7d82612c52565b9050919050565b612c8d81612c72565b8114612c9857600080fd5b50565b600081359050612caa81612c84565b92915050565b60008060408385031215612cc757612cc6612b25565b5b6000612cd585828601612c9b565b9250506020612ce685828601612b4b565b9150509250929050565b60008115159050919050565b612d0581612cf0565b82525050565b6000602082019050612d206000830184612cfc565b92915050565b600060208284031215612d3c57612d3b612b25565b5b6000612d4a84828501612c9b565b91505092915050565b6000819050919050565b6000612d78612d73612d6e84612c52565b612d53565b612c52565b9050919050565b6000612d8a82612d5d565b9050919050565b6000612d9c82612d7f565b9050919050565b612dac81612d91565b82525050565b6000602082019050612dc76000830184612da3565b92915050565b612dd681612b2a565b82525050565b6000602082019050612df16000830184612dcd565b92915050565b600060208284031215612e0d57612e0c612b25565b5b6000612e1b84828501612b4b565b91505092915050565b600080600060608486031215612e3d57612e3c612b25565b5b6000612e4b86828701612c9b565b9350506020612e5c86828701612c9b565b9250506040612e6d86828701612b4b565b9150509250925092565b612e8081612c72565b82525050565b6000602082019050612e9b6000830184612e77565b92915050565b600060ff82169050919050565b612eb781612ea1565b82525050565b6000602082019050612ed26000830184612eae565b92915050565b612ee181612cf0565b8114612eec57600080fd5b50565b600081359050612efe81612ed8565b92915050565b60008060408385031215612f1b57612f1a612b25565b5b6000612f2985828601612c9b565b9250506020612f3a85828601612eef565b9150509250929050565b600060208284031215612f5a57612f59612b25565b5b6000612f6884828501612eef565b91505092915050565b60008060408385031215612f8857612f87612b25565b5b6000612f9685828601612c9b565b9250506020612fa785828601612c9b565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612fe7602083612bab565b9150612ff282612fb1565b602082019050919050565b6000602082019050818103600083015261301681612fda565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061305782612b2a565b915061306283612b2a565b925082820190508082111561307a5761307961301d565b5b92915050565b7f4d757374206b656570206665657320617420313025206f72206c657373000000600082015250565b60006130b6601d83612bab565b91506130c182613080565b602082019050919050565b600060208201905081810360008301526130e5816130a9565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061313357607f821691505b602082108103613146576131456130ec565b5b50919050565b600061315782612b2a565b915061316283612b2a565b925082820261317081612b2a565b915082820484148315176131875761318661301d565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006131c882612b2a565b91506131d383612b2a565b9250826131e3576131e261318e565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b600061324a602f83612bab565b9150613255826131ee565b604082019050919050565b600060208201905081810360008301526132798161323d565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006132dc602883612bab565b91506132e782613280565b604082019050919050565b6000602082019050818103600083015261330b816132cf565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b600061336e602483612bab565b915061337982613312565b604082019050919050565b6000602082019050818103600083015261339d81613361565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000613400603583612bab565b915061340b826133a4565b604082019050919050565b6000602082019050818103600083015261342f816133f3565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000613492603483612bab565b915061349d82613436565b604082019050919050565b600060208201905081810360008301526134c181613485565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613524602683612bab565b915061352f826134c8565b604082019050919050565b6000602082019050818103600083015261355381613517565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006135b6602483612bab565b91506135c18261355a565b604082019050919050565b600060208201905081810360008301526135e5816135a9565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613648602283612bab565b9150613653826135ec565b604082019050919050565b600060208201905081810360008301526136778161363b565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006136da602583612bab565b91506136e58261367e565b604082019050919050565b60006020820190508181036000830152613709816136cd565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061376c602383612bab565b915061377782613710565b604082019050919050565b6000602082019050818103600083015261379b8161375f565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006137d8601683612bab565b91506137e3826137a2565b602082019050919050565b60006020820190508181036000830152613807816137cb565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b600061386a603583612bab565b91506138758261380e565b604082019050919050565b600060208201905081810360008301526138998161385d565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006138d6601383612bab565b91506138e1826138a0565b602082019050919050565b60006020820190508181036000830152613905816138c9565b9050919050565b600061391782612b2a565b915061392283612b2a565b925082820390508181111561393a5761393961301d565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061399c602683612bab565b91506139a782613940565b604082019050919050565b600060208201905081810360008301526139cb8161398f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b6000613a55613a50613a4b84613a30565b612d53565b612b2a565b9050919050565b613a6581613a3a565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613aa081612c72565b82525050565b6000613ab28383613a97565b60208301905092915050565b6000602082019050919050565b6000613ad682613a6b565b613ae08185613a76565b9350613aeb83613a87565b8060005b83811015613b1c578151613b038882613aa6565b9750613b0e83613abe565b925050600181019050613aef565b5085935050505092915050565b600060a082019050613b3e6000830188612dcd565b613b4b6020830187613a5c565b8181036040830152613b5d8186613acb565b9050613b6c6060830185612e77565b613b796080830184612dcd565b969550505050505056fea2646970667358221220b946486e1dbe8dc1f891e2c8a06155195c97800950869cafd1ef7bf619f52ac764736f6c63430008110033

Deployed Bytecode

0x60806040526004361061024a5760003560e01c8063715018a611610139578063c0246668116100b6578063dd62ed3e1161007a578063dd62ed3e1461087d578063e2f45605146108ba578063f11a24d3146108e5578063f2fde38b14610910578063f637434214610939578063f8b45b051461096457610251565b8063c024666814610798578063c18bc195146107c1578063c8c8ebe4146107ea578063d257b34f14610815578063d85ba0631461085257610251565b80638da5cb5b116100fd5780638da5cb5b146106b1578063924de9b7146106dc57806395d89b4114610705578063a9059cbb14610730578063bbc0c7421461076d57610251565b8063715018a614610604578063751039fc1461061b5780637571336a146106465780638322fff21461066f5780638a8c523c1461069a57610251565b8063313ce567116101c757806365c1bef81161018b57806365c1bef81461051d57806366ca9b83146105485780636a486a8e146105715780636ddd17131461059c57806370a08231146105c757610251565b8063313ce56714610434578063489ae78d1461045f57806349bd5a5e1461048a5780634a62bb65146104b55780634fbee193146104e057610251565b806318160ddd1161020e57806318160ddd1461034f5780631816467f1461037a578063203e727e146103a357806323b872dd146103cc57806327c8f8351461040957610251565b806302dbd8f81461025657806306fdde031461027f578063095ea7b3146102aa57806310d5de53146102e75780631694505e1461032457610251565b3661025157005b600080fd5b34801561026257600080fd5b5061027d60048036038101906102789190612b60565b61098f565b005b34801561028b57600080fd5b50610294610a79565b6040516102a19190612c30565b60405180910390f35b3480156102b657600080fd5b506102d160048036038101906102cc9190612cb0565b610b0b565b6040516102de9190612d0b565b60405180910390f35b3480156102f357600080fd5b5061030e60048036038101906103099190612d26565b610b29565b60405161031b9190612d0b565b60405180910390f35b34801561033057600080fd5b50610339610b49565b6040516103469190612db2565b60405180910390f35b34801561035b57600080fd5b50610364610b6d565b6040516103719190612ddc565b60405180910390f35b34801561038657600080fd5b506103a1600480360381019061039c9190612d26565b610b77565b005b3480156103af57600080fd5b506103ca60048036038101906103c59190612df7565b610cb3565b005b3480156103d857600080fd5b506103f360048036038101906103ee9190612e24565b610dc2565b6040516104009190612d0b565b60405180910390f35b34801561041557600080fd5b5061041e610eba565b60405161042b9190612e86565b60405180910390f35b34801561044057600080fd5b50610449610ec0565b6040516104569190612ebd565b60405180910390f35b34801561046b57600080fd5b50610474610ec9565b6040516104819190612ddc565b60405180910390f35b34801561049657600080fd5b5061049f610ecf565b6040516104ac9190612e86565b60405180910390f35b3480156104c157600080fd5b506104ca610ef3565b6040516104d79190612d0b565b60405180910390f35b3480156104ec57600080fd5b5061050760048036038101906105029190612d26565b610f06565b6040516105149190612d0b565b60405180910390f35b34801561052957600080fd5b50610532610f5c565b60405161053f9190612ddc565b60405180910390f35b34801561055457600080fd5b5061056f600480360381019061056a9190612b60565b610f62565b005b34801561057d57600080fd5b5061058661104c565b6040516105939190612ddc565b60405180910390f35b3480156105a857600080fd5b506105b1611052565b6040516105be9190612d0b565b60405180910390f35b3480156105d357600080fd5b506105ee60048036038101906105e99190612d26565b611065565b6040516105fb9190612ddc565b60405180910390f35b34801561061057600080fd5b506106196110ad565b005b34801561062757600080fd5b50610630611135565b60405161063d9190612d0b565b60405180910390f35b34801561065257600080fd5b5061066d60048036038101906106689190612f04565b6111d5565b005b34801561067b57600080fd5b506106846112ac565b6040516106919190612e86565b60405180910390f35b3480156106a657600080fd5b506106af6112d2565b005b3480156106bd57600080fd5b506106c6611386565b6040516106d39190612e86565b60405180910390f35b3480156106e857600080fd5b5061070360048036038101906106fe9190612f44565b6113b0565b005b34801561071157600080fd5b5061071a611449565b6040516107279190612c30565b60405180910390f35b34801561073c57600080fd5b5061075760048036038101906107529190612cb0565b6114db565b6040516107649190612d0b565b60405180910390f35b34801561077957600080fd5b506107826114f9565b60405161078f9190612d0b565b60405180910390f35b3480156107a457600080fd5b506107bf60048036038101906107ba9190612f04565b61150c565b005b3480156107cd57600080fd5b506107e860048036038101906107e39190612df7565b611631565b005b3480156107f657600080fd5b506107ff611740565b60405161080c9190612ddc565b60405180910390f35b34801561082157600080fd5b5061083c60048036038101906108379190612df7565b611746565b6040516108499190612d0b565b60405180910390f35b34801561085e57600080fd5b5061086761189b565b6040516108749190612ddc565b60405180910390f35b34801561088957600080fd5b506108a4600480360381019061089f9190612f71565b6118a1565b6040516108b19190612ddc565b60405180910390f35b3480156108c657600080fd5b506108cf611928565b6040516108dc9190612ddc565b60405180910390f35b3480156108f157600080fd5b506108fa61192e565b6040516109079190612ddc565b60405180910390f35b34801561091c57600080fd5b5061093760048036038101906109329190612d26565b611934565b005b34801561094557600080fd5b5061094e611a2b565b60405161095b9190612ddc565b60405180910390f35b34801561097057600080fd5b50610979611a31565b6040516109869190612ddc565b60405180910390f35b610997611a37565b73ffffffffffffffffffffffffffffffffffffffff166109b5611386565b73ffffffffffffffffffffffffffffffffffffffff1614610a0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0290612ffd565b60405180910390fd5b8160108190555080601181905550601154601054610a29919061304c565b600f819055506032600f541115610a75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6c906130cc565b60405180910390fd5b5050565b606060038054610a889061311b565b80601f0160208091040260200160405190810160405280929190818152602001828054610ab49061311b565b8015610b015780601f10610ad657610100808354040283529160200191610b01565b820191906000526020600020905b815481529060010190602001808311610ae457829003601f168201915b5050505050905090565b6000610b1f610b18611a37565b8484611a3f565b6001905092915050565b60136020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610b7f611a37565b73ffffffffffffffffffffffffffffffffffffffff16610b9d611386565b73ffffffffffffffffffffffffffffffffffffffff1614610bf3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bea90612ffd565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610cbb611a37565b73ffffffffffffffffffffffffffffffffffffffff16610cd9611386565b73ffffffffffffffffffffffffffffffffffffffff1614610d2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2690612ffd565b60405180910390fd5b670de0b6b3a76400006103e86005610d45610b6d565b610d4f919061314c565b610d5991906131bd565b610d6391906131bd565b811015610da5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9c90613260565b60405180910390fd5b670de0b6b3a764000081610db9919061314c565b60088190555050565b6000610dcf848484611c08565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610e1a611a37565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610e9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e91906132f2565b60405180910390fd5b610eae85610ea6611a37565b858403611a3f565b60019150509392505050565b61dead81565b60006012905090565b600d5481565b7f000000000000000000000000d77bee37d52461b2b9c030a7af22e1b8c5e438b981565b600b60009054906101000a900460ff1681565b6000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60105481565b610f6a611a37565b73ffffffffffffffffffffffffffffffffffffffff16610f88611386565b73ffffffffffffffffffffffffffffffffffffffff1614610fde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd590612ffd565b60405180910390fd5b81600d8190555080600e81905550600e54600d54610ffc919061304c565b600c81905550601e600c541115611048576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103f906130cc565b60405180910390fd5b5050565b600f5481565b600b60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6110b5611a37565b73ffffffffffffffffffffffffffffffffffffffff166110d3611386565b73ffffffffffffffffffffffffffffffffffffffff1614611129576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112090612ffd565b60405180910390fd5b6111336000612567565b565b600061113f611a37565b73ffffffffffffffffffffffffffffffffffffffff1661115d611386565b73ffffffffffffffffffffffffffffffffffffffff16146111b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111aa90612ffd565b60405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055506001905090565b6111dd611a37565b73ffffffffffffffffffffffffffffffffffffffff166111fb611386565b73ffffffffffffffffffffffffffffffffffffffff1614611251576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124890612ffd565b60405180910390fd5b80601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6112da611a37565b73ffffffffffffffffffffffffffffffffffffffff166112f8611386565b73ffffffffffffffffffffffffffffffffffffffff161461134e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134590612ffd565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6113b8611a37565b73ffffffffffffffffffffffffffffffffffffffff166113d6611386565b73ffffffffffffffffffffffffffffffffffffffff161461142c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142390612ffd565b60405180910390fd5b80600b60026101000a81548160ff02191690831515021790555050565b6060600480546114589061311b565b80601f01602080910402602001604051908101604052809291908181526020018280546114849061311b565b80156114d15780601f106114a6576101008083540402835291602001916114d1565b820191906000526020600020905b8154815290600101906020018083116114b457829003601f168201915b5050505050905090565b60006114ef6114e8611a37565b8484611c08565b6001905092915050565b600b60019054906101000a900460ff1681565b611514611a37565b73ffffffffffffffffffffffffffffffffffffffff16611532611386565b73ffffffffffffffffffffffffffffffffffffffff1614611588576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157f90612ffd565b60405180910390fd5b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516116259190612d0b565b60405180910390a25050565b611639611a37565b73ffffffffffffffffffffffffffffffffffffffff16611657611386565b73ffffffffffffffffffffffffffffffffffffffff16146116ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a490612ffd565b60405180910390fd5b670de0b6b3a76400006103e860056116c3610b6d565b6116cd919061314c565b6116d791906131bd565b6116e191906131bd565b811015611723576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171a90613384565b60405180910390fd5b670de0b6b3a764000081611737919061314c565b600a8190555050565b60085481565b6000611750611a37565b73ffffffffffffffffffffffffffffffffffffffff1661176e611386565b73ffffffffffffffffffffffffffffffffffffffff16146117c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117bb90612ffd565b60405180910390fd5b620186a060016117d2610b6d565b6117dc919061314c565b6117e691906131bd565b821015611828576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181f90613416565b60405180910390fd5b6103e86005611835610b6d565b61183f919061314c565b61184991906131bd565b82111561188b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611882906134a8565b60405180910390fd5b8160098190555060019050919050565b600c5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b600e5481565b61193c611a37565b73ffffffffffffffffffffffffffffffffffffffff1661195a611386565b73ffffffffffffffffffffffffffffffffffffffff16146119b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a790612ffd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611a1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a169061353a565b60405180910390fd5b611a2881612567565b50565b60115481565b600a5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611aae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa5906135cc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b149061365e565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611bfb9190612ddc565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611c77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6e906136f0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ce6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cdd90613782565b60405180910390fd5b60008103611cff57611cfa8383600061262d565b612562565b600b60009054906101000a900460ff161561210957611d1c611386565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611d8a5750611d5a611386565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611dc35750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611dfd575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611e165750600660149054906101000a900460ff16155b1561210857600b60019054906101000a900460ff16611f1057601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611ed05750601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611f0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f06906137ee565b60405180910390fd5b5b7f000000000000000000000000d77bee37d52461b2b9c030a7af22e1b8c5e438b973ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148015611fb55750601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561205c57600854811115611fff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff690613880565b60405180910390fd5b600a5461200b83611065565b82612016919061304c565b1115612057576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204e906138ec565b60405180910390fd5b612107565b601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661210657600a546120b983611065565b826120c4919061304c565b1115612105576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120fc906138ec565b60405180910390fd5b5b5b5b5b600061211430611065565b9050600060095482101590508080156121395750600b60029054906101000a900460ff165b80156121525750600660149054906101000a900460ff16155b80156121a957507f000000000000000000000000d77bee37d52461b2b9c030a7af22e1b8c5e438b973ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b80156121ff5750601260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156122555750601260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612299576001600660146101000a81548160ff02191690831515021790555061227d6128ac565b6000600660146101000a81548160ff0219169083151502179055505b6000600660149054906101000a900460ff16159050601260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061234f5750601260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561235957600090505b60008060008315612550577f000000000000000000000000d77bee37d52461b2b9c030a7af22e1b8c5e438b973ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff161480156123c157506000600f54115b1561242f576123ee60646123e0600f548a6128fc90919063ffffffff16565b61291290919063ffffffff16565b9250600f5460115484612401919061314c565b61240b91906131bd565b9150600f546010548461241e919061314c565b61242891906131bd565b90506124f7565b7f000000000000000000000000d77bee37d52461b2b9c030a7af22e1b8c5e438b973ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff1614801561248c57506000600c54115b156124f6576124b960646124ab600c548a6128fc90919063ffffffff16565b61291290919063ffffffff16565b9250600c54600e54846124cc919061314c565b6124d691906131bd565b9150600c54600d54846124e9919061314c565b6124f391906131bd565b90505b5b600083111561250c5761250b89308561262d565b5b600082111561254157612540307f000000000000000000000000d77bee37d52461b2b9c030a7af22e1b8c5e438b98461262d565b5b828761254d919061390c565b96505b61255b89898961262d565b5050505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361269c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612693906136f0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361270b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270290613782565b60405180910390fd5b612716838383612928565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561279c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612793906139b2565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461282f919061304c565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516128939190612ddc565b60405180910390a36128a684848461292d565b50505050565b60006128b730611065565b9050600081036128c757506128fa565b60146009546128d6919061314c565b8111156128ef5760146009546128ec919061314c565b90505b6128f881612932565b505b565b6000818361290a919061314c565b905092915050565b6000818361292091906131bd565b905092915050565b505050565b505050565b6000600267ffffffffffffffff81111561294f5761294e6139d2565b5b60405190808252806020026020018201604052801561297d5781602001602082028036833780820191505090505b509050308160008151811061299557612994613a01565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681600181518110612a0657612a05613a01565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612a6b307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611a3f565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff16635c11d79583600084600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b8152600401612aef959493929190613b29565b600060405180830381600087803b158015612b0957600080fd5b505af1158015612b1d573d6000803e3d6000fd5b505050505050565b600080fd5b6000819050919050565b612b3d81612b2a565b8114612b4857600080fd5b50565b600081359050612b5a81612b34565b92915050565b60008060408385031215612b7757612b76612b25565b5b6000612b8585828601612b4b565b9250506020612b9685828601612b4b565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612bda578082015181840152602081019050612bbf565b60008484015250505050565b6000601f19601f8301169050919050565b6000612c0282612ba0565b612c0c8185612bab565b9350612c1c818560208601612bbc565b612c2581612be6565b840191505092915050565b60006020820190508181036000830152612c4a8184612bf7565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612c7d82612c52565b9050919050565b612c8d81612c72565b8114612c9857600080fd5b50565b600081359050612caa81612c84565b92915050565b60008060408385031215612cc757612cc6612b25565b5b6000612cd585828601612c9b565b9250506020612ce685828601612b4b565b9150509250929050565b60008115159050919050565b612d0581612cf0565b82525050565b6000602082019050612d206000830184612cfc565b92915050565b600060208284031215612d3c57612d3b612b25565b5b6000612d4a84828501612c9b565b91505092915050565b6000819050919050565b6000612d78612d73612d6e84612c52565b612d53565b612c52565b9050919050565b6000612d8a82612d5d565b9050919050565b6000612d9c82612d7f565b9050919050565b612dac81612d91565b82525050565b6000602082019050612dc76000830184612da3565b92915050565b612dd681612b2a565b82525050565b6000602082019050612df16000830184612dcd565b92915050565b600060208284031215612e0d57612e0c612b25565b5b6000612e1b84828501612b4b565b91505092915050565b600080600060608486031215612e3d57612e3c612b25565b5b6000612e4b86828701612c9b565b9350506020612e5c86828701612c9b565b9250506040612e6d86828701612b4b565b9150509250925092565b612e8081612c72565b82525050565b6000602082019050612e9b6000830184612e77565b92915050565b600060ff82169050919050565b612eb781612ea1565b82525050565b6000602082019050612ed26000830184612eae565b92915050565b612ee181612cf0565b8114612eec57600080fd5b50565b600081359050612efe81612ed8565b92915050565b60008060408385031215612f1b57612f1a612b25565b5b6000612f2985828601612c9b565b9250506020612f3a85828601612eef565b9150509250929050565b600060208284031215612f5a57612f59612b25565b5b6000612f6884828501612eef565b91505092915050565b60008060408385031215612f8857612f87612b25565b5b6000612f9685828601612c9b565b9250506020612fa785828601612c9b565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612fe7602083612bab565b9150612ff282612fb1565b602082019050919050565b6000602082019050818103600083015261301681612fda565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061305782612b2a565b915061306283612b2a565b925082820190508082111561307a5761307961301d565b5b92915050565b7f4d757374206b656570206665657320617420313025206f72206c657373000000600082015250565b60006130b6601d83612bab565b91506130c182613080565b602082019050919050565b600060208201905081810360008301526130e5816130a9565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061313357607f821691505b602082108103613146576131456130ec565b5b50919050565b600061315782612b2a565b915061316283612b2a565b925082820261317081612b2a565b915082820484148315176131875761318661301d565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006131c882612b2a565b91506131d383612b2a565b9250826131e3576131e261318e565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b600061324a602f83612bab565b9150613255826131ee565b604082019050919050565b600060208201905081810360008301526132798161323d565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006132dc602883612bab565b91506132e782613280565b604082019050919050565b6000602082019050818103600083015261330b816132cf565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b600061336e602483612bab565b915061337982613312565b604082019050919050565b6000602082019050818103600083015261339d81613361565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000613400603583612bab565b915061340b826133a4565b604082019050919050565b6000602082019050818103600083015261342f816133f3565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000613492603483612bab565b915061349d82613436565b604082019050919050565b600060208201905081810360008301526134c181613485565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613524602683612bab565b915061352f826134c8565b604082019050919050565b6000602082019050818103600083015261355381613517565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006135b6602483612bab565b91506135c18261355a565b604082019050919050565b600060208201905081810360008301526135e5816135a9565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613648602283612bab565b9150613653826135ec565b604082019050919050565b600060208201905081810360008301526136778161363b565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006136da602583612bab565b91506136e58261367e565b604082019050919050565b60006020820190508181036000830152613709816136cd565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061376c602383612bab565b915061377782613710565b604082019050919050565b6000602082019050818103600083015261379b8161375f565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006137d8601683612bab565b91506137e3826137a2565b602082019050919050565b60006020820190508181036000830152613807816137cb565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b600061386a603583612bab565b91506138758261380e565b604082019050919050565b600060208201905081810360008301526138998161385d565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006138d6601383612bab565b91506138e1826138a0565b602082019050919050565b60006020820190508181036000830152613905816138c9565b9050919050565b600061391782612b2a565b915061392283612b2a565b925082820390508181111561393a5761393961301d565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061399c602683612bab565b91506139a782613940565b604082019050919050565b600060208201905081810360008301526139cb8161398f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b6000613a55613a50613a4b84613a30565b612d53565b612b2a565b9050919050565b613a6581613a3a565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613aa081612c72565b82525050565b6000613ab28383613a97565b60208301905092915050565b6000602082019050919050565b6000613ad682613a6b565b613ae08185613a76565b9350613aeb83613a87565b8060005b83811015613b1c578151613b038882613aa6565b9750613b0e83613abe565b925050600181019050613aef565b5085935050505092915050565b600060a082019050613b3e6000830188612dcd565b613b4b6020830187613a5c565b8181036040830152613b5d8186613acb565b9050613b6c6060830185612e77565b613b796080830184612dcd565b969550505050505056fea2646970667358221220b946486e1dbe8dc1f891e2c8a06155195c97800950869cafd1ef7bf619f52ac764736f6c63430008110033

Deployed Bytecode Sourcemap

25199:10734:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30475:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10055:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12222:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26158:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25274:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11175:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30991:189;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29238:275;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12873:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25377:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11017:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25841:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25332:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25688:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31190:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25946:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30156:311;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25911:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25768:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11346:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3290:103;;;;;;;;;;;;;:::i;:::-;;28542:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29785:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25437:63;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28378:112;;;;;;;;;;;;;:::i;:::-;;2639:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30048:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10274:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11686:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25728:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30801:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29521:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25573:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28733:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25807:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11924:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25615:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25872:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3548:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25978:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25655:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30475:318;2870:12;:10;:12::i;:::-;2859:23;;:7;:5;:7::i;:::-;:23;;;2851:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;30607:7:::1;30594:10;:20;;;;30644:13;30625:16;:32;;;;30697:16;;30684:10;;:29;;;;:::i;:::-;30668:13;:45;;;;30749:2;30732:13;;:19;;30724:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;30475:318:::0;;:::o;10055:100::-;10109:13;10142:5;10135:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10055:100;:::o;12222:169::-;12305:4;12322:39;12331:12;:10;:12::i;:::-;12345:7;12354:6;12322:8;:39::i;:::-;12379:4;12372:11;;12222:169;;;;:::o;26158:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;25274:51::-;;;:::o;11175:108::-;11236:7;11263:12;;11256:19;;11175:108;:::o;30991:189::-;2870:12;:10;:12::i;:::-;2859:23;;:7;:5;:7::i;:::-;:23;;;2851:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;31127:9:::1;;;;;;;;;;;31096:41;;31113:12;31096:41;;;;;;;;;;;;31160:12;31148:9;;:24;;;;;;;;;;;;;;;;;;30991:189:::0;:::o;29238:275::-;2870:12;:10;:12::i;:::-;2859:23;;:7;:5;:7::i;:::-;:23;;;2851:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;29375:4:::1;29367;29362:1;29346:13;:11;:13::i;:::-;:17;;;;:::i;:::-;29345:26;;;;:::i;:::-;29344:35;;;;:::i;:::-;29334:6;:45;;29312:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;29498:6;29488;:17;;;;:::i;:::-;29465:20;:40;;;;29238:275:::0;:::o;12873:492::-;13013:4;13030:36;13040:6;13048:9;13059:6;13030:9;:36::i;:::-;13079:24;13106:11;:19;13118:6;13106:19;;;;;;;;;;;;;;;:33;13126:12;:10;:12::i;:::-;13106:33;;;;;;;;;;;;;;;;13079:60;;13178:6;13158:16;:26;;13150:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;13265:57;13274:6;13282:12;:10;:12::i;:::-;13315:6;13296:16;:25;13265:8;:57::i;:::-;13353:4;13346:11;;;12873:492;;;;;:::o;25377:53::-;25423:6;25377:53;:::o;11017:93::-;11075:5;11100:2;11093:9;;11017:93;:::o;25841:24::-;;;;:::o;25332:38::-;;;:::o;25688:33::-;;;;;;;;;;;;;:::o;31190:126::-;31256:4;31280:19;:28;31300:7;31280:28;;;;;;;;;;;;;;;;;;;;;;;;;31273:35;;31190:126;;;:::o;25946:25::-;;;;:::o;30156:311::-;2870:12;:10;:12::i;:::-;2859:23;;:7;:5;:7::i;:::-;:23;;;2851:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;30286:7:::1;30274:9;:19;;;;30322:13;30304:15;:31;;;;30373:15;;30361:9;;:27;;;;:::i;:::-;30346:12;:42;;;;30423:2;30407:12;;:18;;30399:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;30156:311:::0;;:::o;25911:28::-;;;;:::o;25768:30::-;;;;;;;;;;;;;:::o;11346:127::-;11420:7;11447:9;:18;11457:7;11447:18;;;;;;;;;;;;;;;;11440:25;;11346:127;;;:::o;3290:103::-;2870:12;:10;:12::i;:::-;2859:23;;:7;:5;:7::i;:::-;:23;;;2851:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3355:30:::1;3382:1;3355:18;:30::i;:::-;3290:103::o:0;28542:121::-;28594:4;2870:12;:10;:12::i;:::-;2859:23;;:7;:5;:7::i;:::-;:23;;;2851:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;28628:5:::1;28611:14;;:22;;;;;;;;;;;;;;;;;;28651:4;28644:11;;28542:121:::0;:::o;29785:167::-;2870:12;:10;:12::i;:::-;2859:23;;:7;:5;:7::i;:::-;:23;;;2851:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;29940:4:::1;29898:31;:39;29930:6;29898:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;29785:167:::0;;:::o;25437:63::-;;;;;;;;;;;;;:::o;28378:112::-;2870:12;:10;:12::i;:::-;2859:23;;:7;:5;:7::i;:::-;:23;;;2851:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;28449:4:::1;28433:13;;:20;;;;;;;;;;;;;;;;;;28478:4;28464:11;;:18;;;;;;;;;;;;;;;;;;28378:112::o:0;2639:87::-;2685:7;2712:6;;;;;;;;;;;2705:13;;2639:87;:::o;30048:100::-;2870:12;:10;:12::i;:::-;2859:23;;:7;:5;:7::i;:::-;:23;;;2851:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;30133:7:::1;30119:11;;:21;;;;;;;;;;;;;;;;;;30048:100:::0;:::o;10274:104::-;10330:13;10363:7;10356:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10274:104;:::o;11686:175::-;11772:4;11789:42;11799:12;:10;:12::i;:::-;11813:9;11824:6;11789:9;:42::i;:::-;11849:4;11842:11;;11686:175;;;;:::o;25728:33::-;;;;;;;;;;;;;:::o;30801:182::-;2870:12;:10;:12::i;:::-;2859:23;;:7;:5;:7::i;:::-;:23;;;2851:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;30917:8:::1;30886:19;:28;30906:7;30886:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;30957:7;30941:34;;;30966:8;30941:34;;;;;;:::i;:::-;;;;;;;;30801:182:::0;;:::o;29521:256::-;2870:12;:10;:12::i;:::-;2859:23;;:7;:5;:7::i;:::-;:23;;;2851:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;29661:4:::1;29653;29648:1;29632:13;:11;:13::i;:::-;:17;;;;:::i;:::-;29631:26;;;;:::i;:::-;29630:35;;;;:::i;:::-;29620:6;:45;;29598:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;29762:6;29752;:17;;;;:::i;:::-;29740:9;:29;;;;29521:256:::0;:::o;25573:35::-;;;;:::o;28733:497::-;28841:4;2870:12;:10;:12::i;:::-;2859:23;;:7;:5;:7::i;:::-;:23;;;2851:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;28920:6:::1;28915:1;28899:13;:11;:13::i;:::-;:17;;;;:::i;:::-;28898:28;;;;:::i;:::-;28885:9;:41;;28863:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;29075:4;29070:1;29054:13;:11;:13::i;:::-;:17;;;;:::i;:::-;29053:26;;;;:::i;:::-;29040:9;:39;;29018:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;29191:9;29170:18;:30;;;;29218:4;29211:11;;28733:497:::0;;;:::o;25807:27::-;;;;:::o;11924:151::-;12013:7;12040:11;:18;12052:5;12040:18;;;;;;;;;;;;;;;:27;12059:7;12040:27;;;;;;;;;;;;;;;;12033:34;;11924:151;;;;:::o;25615:33::-;;;;:::o;25872:30::-;;;;:::o;3548:201::-;2870:12;:10;:12::i;:::-;2859:23;;:7;:5;:7::i;:::-;:23;;;2851:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3657:1:::1;3637:22;;:8;:22;;::::0;3629:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3713:28;3732:8;3713:18;:28::i;:::-;3548:201:::0;:::o;25978:31::-;;;;:::o;25655:24::-;;;;:::o;1312:98::-;1365:7;1392:10;1385:17;;1312:98;:::o;15714:380::-;15867:1;15850:19;;:5;:19;;;15842:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15948:1;15929:21;;:7;:21;;;15921:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16032:6;16002:11;:18;16014:5;16002:18;;;;;;;;;;;;;;;:27;16021:7;16002:27;;;;;;;;;;;;;;;:36;;;;16070:7;16054:32;;16063:5;16054:32;;;16079:6;16054:32;;;;;;:::i;:::-;;;;;;;;15714:380;;;:::o;31324:3679::-;31472:1;31456:18;;:4;:18;;;31448:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;31549:1;31535:16;;:2;:16;;;31527:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;31618:1;31608:6;:11;31604:93;;31636:28;31652:4;31658:2;31662:1;31636:15;:28::i;:::-;31679:7;;31604:93;31713:14;;;;;;;;;;;31709:1430;;;31774:7;:5;:7::i;:::-;31766:15;;:4;:15;;;;:49;;;;;31808:7;:5;:7::i;:::-;31802:13;;:2;:13;;;;31766:49;:86;;;;;31850:1;31836:16;;:2;:16;;;;31766:86;:128;;;;;31887:6;31873:21;;:2;:21;;;;31766:128;:158;;;;;31916:8;;;;;;;;;;;31915:9;31766:158;31744:1384;;;31964:13;;;;;;;;;;;31959:223;;32036:19;:25;32056:4;32036:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;32065:19;:23;32085:2;32065:23;;;;;;;;;;;;;;;;;;;;;;;;;32036:52;32002:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;31959:223;32396:13;32388:21;;:4;:21;;;:82;;;;;32435:31;:35;32467:2;32435:35;;;;;;;;;;;;;;;;;;;;;;;;;32434:36;32388:82;32362:751;;;32557:20;;32547:6;:30;;32513:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;32765:9;;32748:13;32758:2;32748:9;:13::i;:::-;32739:6;:22;;;;:::i;:::-;:35;;32705:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;32362:751;;;32893:31;:35;32925:2;32893:35;;;;;;;;;;;;;;;;;;;;;;;;;32888:225;;33013:9;;32996:13;33006:2;32996:9;:13::i;:::-;32987:6;:22;;;;:::i;:::-;:35;;32953:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;32888:225;32362:751;31744:1384;31709:1430;33151:28;33182:24;33200:4;33182:9;:24::i;:::-;33151:55;;33219:12;33258:18;;33234:20;:42;;33219:57;;33307:7;:35;;;;;33331:11;;;;;;;;;;;33307:35;:61;;;;;33360:8;;;;;;;;;;;33359:9;33307:61;:97;;;;;33391:13;33385:19;;:2;:19;;;33307:97;:140;;;;;33422:19;:25;33442:4;33422:25;;;;;;;;;;;;;;;;;;;;;;;;;33421:26;33307:140;:181;;;;;33465:19;:23;33485:2;33465:23;;;;;;;;;;;;;;;;;;;;;;;;;33464:24;33307:181;33289:313;;;33526:4;33515:8;;:15;;;;;;;;;;;;;;;;;;33547:10;:8;:10::i;:::-;33585:5;33574:8;;:16;;;;;;;;;;;;;;;;;;33289:313;33614:12;33630:8;;;;;;;;;;;33629:9;33614:24;;33740:19;:25;33760:4;33740:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;33769:19;:23;33789:2;33769:23;;;;;;;;;;;;;;;;;;;;;;;;;33740:52;33736:100;;;33819:5;33809:15;;33736:100;33848:12;33875:26;33916:20;34029:7;34025:925;;;34087:13;34081:19;;:2;:19;;;:40;;;;;34120:1;34104:13;;:17;34081:40;34077:583;;;34149:34;34179:3;34149:25;34160:13;;34149:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;34142:41;;34251:13;;34231:16;;34224:4;:23;;;;:::i;:::-;34223:41;;;;:::i;:::-;34202:62;;34320:13;;34306:10;;34299:4;:17;;;;:::i;:::-;34298:35;;;;:::i;:::-;34283:50;;34077:583;;;34403:13;34395:21;;:4;:21;;;:41;;;;;34435:1;34420:12;;:16;34395:41;34391:269;;;34464:33;34493:3;34464:24;34475:12;;34464:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;34457:40;;34564:12;;34545:15;;34538:4;:22;;;;:::i;:::-;34537:39;;;;:::i;:::-;34516:60;;34632:12;;34619:9;;34612:4;:16;;;;:::i;:::-;34611:33;;;;:::i;:::-;34596:48;;34391:269;34077:583;34686:1;34680:4;:7;34676:90;;;34708:42;34724:4;34738;34745;34708:15;:42::i;:::-;34676:90;34805:1;34784:18;:22;34780:128;;;34827:65;34851:4;34858:13;34873:18;34827:15;:65::i;:::-;34780:128;34934:4;34924:14;;;;;:::i;:::-;;;34025:925;34962:33;34978:4;34984:2;34988:6;34962:15;:33::i;:::-;31437:3566;;;;;;31324:3679;;;;:::o;3909:191::-;3983:16;4002:6;;;;;;;;;;;3983:25;;4028:8;4019:6;;:17;;;;;;;;;;;;;;;;;;4083:8;4052:40;;4073:8;4052:40;;;;;;;;;;;;3972:128;3909:191;:::o;13855:733::-;14013:1;13995:20;;:6;:20;;;13987:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;14097:1;14076:23;;:9;:23;;;14068:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14152:47;14173:6;14181:9;14192:6;14152:20;:47::i;:::-;14212:21;14236:9;:17;14246:6;14236:17;;;;;;;;;;;;;;;;14212:41;;14289:6;14272:13;:23;;14264:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;14410:6;14394:13;:22;14374:9;:17;14384:6;14374:17;;;;;;;;;;;;;;;:42;;;;14462:6;14438:9;:20;14448:9;14438:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;14503:9;14486:35;;14495:6;14486:35;;;14514:6;14486:35;;;;;;:::i;:::-;;;;;;;;14534:46;14554:6;14562:9;14573:6;14534:19;:46::i;:::-;13976:612;13855:733;;;:::o;35589:339::-;35628:23;35654:24;35672:4;35654:9;:24::i;:::-;35628:50;;35712:1;35693:15;:20;35689:59;;35730:7;;;35689:59;35803:2;35782:18;;:23;;;;:::i;:::-;35764:15;:41;35760:115;;;35861:2;35840:18;;:23;;;;:::i;:::-;35822:41;;35760:115;35887:33;35904:15;35887:16;:33::i;:::-;35617:311;35589:339;:::o;21167:98::-;21225:7;21256:1;21252;:5;;;;:::i;:::-;21245:12;;21167:98;;;;:::o;21566:::-;21624:7;21655:1;21651;:5;;;;:::i;:::-;21644:12;;21566:98;;;;:::o;16694:125::-;;;;:::o;17423:124::-;;;;:::o;35011:570::-;35137:21;35175:1;35161:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35137:40;;35206:4;35188;35193:1;35188:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;35232:3;;;;;;;;;;;35222:4;35227:1;35222:7;;;;;;;;:::i;:::-;;;;;;;:13;;;;;;;;;;;35248:62;35265:4;35280:15;35298:11;35248:8;:62::i;:::-;35349:15;:69;;;35433:11;35459:1;35504:4;35523:9;;;;;;;;;;;35547:15;35349:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35066:515;35011:570;:::o;88:117:1:-;197:1;194;187:12;334:77;371:7;400:5;389:16;;334:77;;;:::o;417:122::-;490:24;508:5;490:24;:::i;:::-;483:5;480:35;470:63;;529:1;526;519:12;470:63;417:122;:::o;545:139::-;591:5;629:6;616:20;607:29;;645:33;672:5;645:33;:::i;:::-;545:139;;;;:::o;690:474::-;758:6;766;815:2;803:9;794:7;790:23;786:32;783:119;;;821:79;;:::i;:::-;783:119;941:1;966:53;1011:7;1002:6;991:9;987:22;966:53;:::i;:::-;956:63;;912:117;1068:2;1094:53;1139:7;1130:6;1119:9;1115:22;1094:53;:::i;:::-;1084:63;;1039:118;690:474;;;;;:::o;1170:99::-;1222:6;1256:5;1250:12;1240:22;;1170:99;;;:::o;1275:169::-;1359:11;1393:6;1388:3;1381:19;1433:4;1428:3;1424:14;1409:29;;1275:169;;;;:::o;1450:246::-;1531:1;1541:113;1555:6;1552:1;1549:13;1541:113;;;1640:1;1635:3;1631:11;1625:18;1621:1;1616:3;1612:11;1605:39;1577:2;1574:1;1570:10;1565:15;;1541:113;;;1688:1;1679:6;1674:3;1670:16;1663:27;1512:184;1450:246;;;:::o;1702:102::-;1743:6;1794:2;1790:7;1785:2;1778:5;1774:14;1770:28;1760:38;;1702:102;;;:::o;1810:377::-;1898:3;1926:39;1959:5;1926:39;:::i;:::-;1981:71;2045:6;2040:3;1981:71;:::i;:::-;1974:78;;2061:65;2119:6;2114:3;2107:4;2100:5;2096:16;2061:65;:::i;:::-;2151:29;2173:6;2151:29;:::i;:::-;2146:3;2142:39;2135:46;;1902:285;1810:377;;;;:::o;2193:313::-;2306:4;2344:2;2333:9;2329:18;2321:26;;2393:9;2387:4;2383:20;2379:1;2368:9;2364:17;2357:47;2421:78;2494:4;2485:6;2421:78;:::i;:::-;2413:86;;2193:313;;;;:::o;2512:126::-;2549:7;2589:42;2582:5;2578:54;2567:65;;2512:126;;;:::o;2644:96::-;2681:7;2710:24;2728:5;2710:24;:::i;:::-;2699:35;;2644:96;;;:::o;2746:122::-;2819:24;2837:5;2819:24;:::i;:::-;2812:5;2809:35;2799:63;;2858:1;2855;2848:12;2799:63;2746:122;:::o;2874:139::-;2920:5;2958:6;2945:20;2936:29;;2974:33;3001:5;2974:33;:::i;:::-;2874:139;;;;:::o;3019:474::-;3087:6;3095;3144:2;3132:9;3123:7;3119:23;3115:32;3112:119;;;3150:79;;:::i;:::-;3112:119;3270:1;3295:53;3340:7;3331:6;3320:9;3316:22;3295:53;:::i;:::-;3285:63;;3241:117;3397:2;3423:53;3468:7;3459:6;3448:9;3444:22;3423:53;:::i;:::-;3413:63;;3368:118;3019:474;;;;;:::o;3499:90::-;3533:7;3576:5;3569:13;3562:21;3551:32;;3499:90;;;:::o;3595:109::-;3676:21;3691:5;3676:21;:::i;:::-;3671:3;3664:34;3595:109;;:::o;3710:210::-;3797:4;3835:2;3824:9;3820:18;3812:26;;3848:65;3910:1;3899:9;3895:17;3886:6;3848:65;:::i;:::-;3710:210;;;;:::o;3926:329::-;3985:6;4034:2;4022:9;4013:7;4009:23;4005:32;4002:119;;;4040:79;;:::i;:::-;4002:119;4160:1;4185:53;4230:7;4221:6;4210:9;4206:22;4185:53;:::i;:::-;4175:63;;4131:117;3926:329;;;;:::o;4261:60::-;4289:3;4310:5;4303:12;;4261:60;;;:::o;4327:142::-;4377:9;4410:53;4428:34;4437:24;4455:5;4437:24;:::i;:::-;4428:34;:::i;:::-;4410:53;:::i;:::-;4397:66;;4327:142;;;:::o;4475:126::-;4525:9;4558:37;4589:5;4558:37;:::i;:::-;4545:50;;4475:126;;;:::o;4607:152::-;4683:9;4716:37;4747:5;4716:37;:::i;:::-;4703:50;;4607:152;;;:::o;4765:183::-;4878:63;4935:5;4878:63;:::i;:::-;4873:3;4866:76;4765:183;;:::o;4954:274::-;5073:4;5111:2;5100:9;5096:18;5088:26;;5124:97;5218:1;5207:9;5203:17;5194:6;5124:97;:::i;:::-;4954:274;;;;:::o;5234:118::-;5321:24;5339:5;5321:24;:::i;:::-;5316:3;5309:37;5234:118;;:::o;5358:222::-;5451:4;5489:2;5478:9;5474:18;5466:26;;5502:71;5570:1;5559:9;5555:17;5546:6;5502:71;:::i;:::-;5358:222;;;;:::o;5586:329::-;5645:6;5694:2;5682:9;5673:7;5669:23;5665:32;5662:119;;;5700:79;;:::i;:::-;5662:119;5820:1;5845:53;5890:7;5881:6;5870:9;5866:22;5845:53;:::i;:::-;5835:63;;5791:117;5586:329;;;;:::o;5921:619::-;5998:6;6006;6014;6063:2;6051:9;6042:7;6038:23;6034:32;6031:119;;;6069:79;;:::i;:::-;6031:119;6189:1;6214:53;6259:7;6250:6;6239:9;6235:22;6214:53;:::i;:::-;6204:63;;6160:117;6316:2;6342:53;6387:7;6378:6;6367:9;6363:22;6342:53;:::i;:::-;6332:63;;6287:118;6444:2;6470:53;6515:7;6506:6;6495:9;6491:22;6470:53;:::i;:::-;6460:63;;6415:118;5921:619;;;;;:::o;6546:118::-;6633:24;6651:5;6633:24;:::i;:::-;6628:3;6621:37;6546:118;;:::o;6670:222::-;6763:4;6801:2;6790:9;6786:18;6778:26;;6814:71;6882:1;6871:9;6867:17;6858:6;6814:71;:::i;:::-;6670:222;;;;:::o;6898:86::-;6933:7;6973:4;6966:5;6962:16;6951:27;;6898:86;;;:::o;6990:112::-;7073:22;7089:5;7073:22;:::i;:::-;7068:3;7061:35;6990:112;;:::o;7108:214::-;7197:4;7235:2;7224:9;7220:18;7212:26;;7248:67;7312:1;7301:9;7297:17;7288:6;7248:67;:::i;:::-;7108:214;;;;:::o;7328:116::-;7398:21;7413:5;7398:21;:::i;:::-;7391:5;7388:32;7378:60;;7434:1;7431;7424:12;7378:60;7328:116;:::o;7450:133::-;7493:5;7531:6;7518:20;7509:29;;7547:30;7571:5;7547:30;:::i;:::-;7450:133;;;;:::o;7589:468::-;7654:6;7662;7711:2;7699:9;7690:7;7686:23;7682:32;7679:119;;;7717:79;;:::i;:::-;7679:119;7837:1;7862:53;7907:7;7898:6;7887:9;7883:22;7862:53;:::i;:::-;7852:63;;7808:117;7964:2;7990:50;8032:7;8023:6;8012:9;8008:22;7990:50;:::i;:::-;7980:60;;7935:115;7589:468;;;;;:::o;8063:323::-;8119:6;8168:2;8156:9;8147:7;8143:23;8139:32;8136:119;;;8174:79;;:::i;:::-;8136:119;8294:1;8319:50;8361:7;8352:6;8341:9;8337:22;8319:50;:::i;:::-;8309:60;;8265:114;8063:323;;;;:::o;8392:474::-;8460:6;8468;8517:2;8505:9;8496:7;8492:23;8488:32;8485:119;;;8523:79;;:::i;:::-;8485:119;8643:1;8668:53;8713:7;8704:6;8693:9;8689:22;8668:53;:::i;:::-;8658:63;;8614:117;8770:2;8796:53;8841:7;8832:6;8821:9;8817:22;8796:53;:::i;:::-;8786:63;;8741:118;8392:474;;;;;:::o;8872:182::-;9012:34;9008:1;9000:6;8996:14;8989:58;8872:182;:::o;9060:366::-;9202:3;9223:67;9287:2;9282:3;9223:67;:::i;:::-;9216:74;;9299:93;9388:3;9299:93;:::i;:::-;9417:2;9412:3;9408:12;9401:19;;9060:366;;;:::o;9432:419::-;9598:4;9636:2;9625:9;9621:18;9613:26;;9685:9;9679:4;9675:20;9671:1;9660:9;9656:17;9649:47;9713:131;9839:4;9713:131;:::i;:::-;9705:139;;9432:419;;;:::o;9857:180::-;9905:77;9902:1;9895:88;10002:4;9999:1;9992:15;10026:4;10023:1;10016:15;10043:191;10083:3;10102:20;10120:1;10102:20;:::i;:::-;10097:25;;10136:20;10154:1;10136:20;:::i;:::-;10131:25;;10179:1;10176;10172:9;10165:16;;10200:3;10197:1;10194:10;10191:36;;;10207:18;;:::i;:::-;10191:36;10043:191;;;;:::o;10240:179::-;10380:31;10376:1;10368:6;10364:14;10357:55;10240:179;:::o;10425:366::-;10567:3;10588:67;10652:2;10647:3;10588:67;:::i;:::-;10581:74;;10664:93;10753:3;10664:93;:::i;:::-;10782:2;10777:3;10773:12;10766:19;;10425:366;;;:::o;10797:419::-;10963:4;11001:2;10990:9;10986:18;10978:26;;11050:9;11044:4;11040:20;11036:1;11025:9;11021:17;11014:47;11078:131;11204:4;11078:131;:::i;:::-;11070:139;;10797:419;;;:::o;11222:180::-;11270:77;11267:1;11260:88;11367:4;11364:1;11357:15;11391:4;11388:1;11381:15;11408:320;11452:6;11489:1;11483:4;11479:12;11469:22;;11536:1;11530:4;11526:12;11557:18;11547:81;;11613:4;11605:6;11601:17;11591:27;;11547:81;11675:2;11667:6;11664:14;11644:18;11641:38;11638:84;;11694:18;;:::i;:::-;11638:84;11459:269;11408:320;;;:::o;11734:410::-;11774:7;11797:20;11815:1;11797:20;:::i;:::-;11792:25;;11831:20;11849:1;11831:20;:::i;:::-;11826:25;;11886:1;11883;11879:9;11908:30;11926:11;11908:30;:::i;:::-;11897:41;;12087:1;12078:7;12074:15;12071:1;12068:22;12048:1;12041:9;12021:83;11998:139;;12117:18;;:::i;:::-;11998:139;11782:362;11734:410;;;;:::o;12150:180::-;12198:77;12195:1;12188:88;12295:4;12292:1;12285:15;12319:4;12316:1;12309:15;12336:185;12376:1;12393:20;12411:1;12393:20;:::i;:::-;12388:25;;12427:20;12445:1;12427:20;:::i;:::-;12422:25;;12466:1;12456:35;;12471:18;;:::i;:::-;12456:35;12513:1;12510;12506:9;12501:14;;12336:185;;;;:::o;12527:234::-;12667:34;12663:1;12655:6;12651:14;12644:58;12736:17;12731:2;12723:6;12719:15;12712:42;12527:234;:::o;12767:366::-;12909:3;12930:67;12994:2;12989:3;12930:67;:::i;:::-;12923:74;;13006:93;13095:3;13006:93;:::i;:::-;13124:2;13119:3;13115:12;13108:19;;12767:366;;;:::o;13139:419::-;13305:4;13343:2;13332:9;13328:18;13320:26;;13392:9;13386:4;13382:20;13378:1;13367:9;13363:17;13356:47;13420:131;13546:4;13420:131;:::i;:::-;13412:139;;13139:419;;;:::o;13564:227::-;13704:34;13700:1;13692:6;13688:14;13681:58;13773:10;13768:2;13760:6;13756:15;13749:35;13564:227;:::o;13797:366::-;13939:3;13960:67;14024:2;14019:3;13960:67;:::i;:::-;13953:74;;14036:93;14125:3;14036:93;:::i;:::-;14154:2;14149:3;14145:12;14138:19;;13797:366;;;:::o;14169:419::-;14335:4;14373:2;14362:9;14358:18;14350:26;;14422:9;14416:4;14412:20;14408:1;14397:9;14393:17;14386:47;14450:131;14576:4;14450:131;:::i;:::-;14442:139;;14169:419;;;:::o;14594:223::-;14734:34;14730:1;14722:6;14718:14;14711:58;14803:6;14798:2;14790:6;14786:15;14779:31;14594:223;:::o;14823:366::-;14965:3;14986:67;15050:2;15045:3;14986:67;:::i;:::-;14979:74;;15062:93;15151:3;15062:93;:::i;:::-;15180:2;15175:3;15171:12;15164:19;;14823:366;;;:::o;15195:419::-;15361:4;15399:2;15388:9;15384:18;15376:26;;15448:9;15442:4;15438:20;15434:1;15423:9;15419:17;15412:47;15476:131;15602:4;15476:131;:::i;:::-;15468:139;;15195:419;;;:::o;15620:240::-;15760:34;15756:1;15748:6;15744:14;15737:58;15829:23;15824:2;15816:6;15812:15;15805:48;15620:240;:::o;15866:366::-;16008:3;16029:67;16093:2;16088:3;16029:67;:::i;:::-;16022:74;;16105:93;16194:3;16105:93;:::i;:::-;16223:2;16218:3;16214:12;16207:19;;15866:366;;;:::o;16238:419::-;16404:4;16442:2;16431:9;16427:18;16419:26;;16491:9;16485:4;16481:20;16477:1;16466:9;16462:17;16455:47;16519:131;16645:4;16519:131;:::i;:::-;16511:139;;16238:419;;;:::o;16663:239::-;16803:34;16799:1;16791:6;16787:14;16780:58;16872:22;16867:2;16859:6;16855:15;16848:47;16663:239;:::o;16908:366::-;17050:3;17071:67;17135:2;17130:3;17071:67;:::i;:::-;17064:74;;17147:93;17236:3;17147:93;:::i;:::-;17265:2;17260:3;17256:12;17249:19;;16908:366;;;:::o;17280:419::-;17446:4;17484:2;17473:9;17469:18;17461:26;;17533:9;17527:4;17523:20;17519:1;17508:9;17504:17;17497:47;17561:131;17687:4;17561:131;:::i;:::-;17553:139;;17280:419;;;:::o;17705:225::-;17845:34;17841:1;17833:6;17829:14;17822:58;17914:8;17909:2;17901:6;17897:15;17890:33;17705:225;:::o;17936:366::-;18078:3;18099:67;18163:2;18158:3;18099:67;:::i;:::-;18092:74;;18175:93;18264:3;18175:93;:::i;:::-;18293:2;18288:3;18284:12;18277:19;;17936:366;;;:::o;18308:419::-;18474:4;18512:2;18501:9;18497:18;18489:26;;18561:9;18555:4;18551:20;18547:1;18536:9;18532:17;18525:47;18589:131;18715:4;18589:131;:::i;:::-;18581:139;;18308:419;;;:::o;18733:223::-;18873:34;18869:1;18861:6;18857:14;18850:58;18942:6;18937:2;18929:6;18925:15;18918:31;18733:223;:::o;18962:366::-;19104:3;19125:67;19189:2;19184:3;19125:67;:::i;:::-;19118:74;;19201:93;19290:3;19201:93;:::i;:::-;19319:2;19314:3;19310:12;19303:19;;18962:366;;;:::o;19334:419::-;19500:4;19538:2;19527:9;19523:18;19515:26;;19587:9;19581:4;19577:20;19573:1;19562:9;19558:17;19551:47;19615:131;19741:4;19615:131;:::i;:::-;19607:139;;19334:419;;;:::o;19759:221::-;19899:34;19895:1;19887:6;19883:14;19876:58;19968:4;19963:2;19955:6;19951:15;19944:29;19759:221;:::o;19986:366::-;20128:3;20149:67;20213:2;20208:3;20149:67;:::i;:::-;20142:74;;20225:93;20314:3;20225:93;:::i;:::-;20343:2;20338:3;20334:12;20327:19;;19986:366;;;:::o;20358:419::-;20524:4;20562:2;20551:9;20547:18;20539:26;;20611:9;20605:4;20601:20;20597:1;20586:9;20582:17;20575:47;20639:131;20765:4;20639:131;:::i;:::-;20631:139;;20358:419;;;:::o;20783:224::-;20923:34;20919:1;20911:6;20907:14;20900:58;20992:7;20987:2;20979:6;20975:15;20968:32;20783:224;:::o;21013:366::-;21155:3;21176:67;21240:2;21235:3;21176:67;:::i;:::-;21169:74;;21252:93;21341:3;21252:93;:::i;:::-;21370:2;21365:3;21361:12;21354:19;;21013:366;;;:::o;21385:419::-;21551:4;21589:2;21578:9;21574:18;21566:26;;21638:9;21632:4;21628:20;21624:1;21613:9;21609:17;21602:47;21666:131;21792:4;21666:131;:::i;:::-;21658:139;;21385:419;;;:::o;21810:222::-;21950:34;21946:1;21938:6;21934:14;21927:58;22019:5;22014:2;22006:6;22002:15;21995:30;21810:222;:::o;22038:366::-;22180:3;22201:67;22265:2;22260:3;22201:67;:::i;:::-;22194:74;;22277:93;22366:3;22277:93;:::i;:::-;22395:2;22390:3;22386:12;22379:19;;22038:366;;;:::o;22410:419::-;22576:4;22614:2;22603:9;22599:18;22591:26;;22663:9;22657:4;22653:20;22649:1;22638:9;22634:17;22627:47;22691:131;22817:4;22691:131;:::i;:::-;22683:139;;22410:419;;;:::o;22835:172::-;22975:24;22971:1;22963:6;22959:14;22952:48;22835:172;:::o;23013:366::-;23155:3;23176:67;23240:2;23235:3;23176:67;:::i;:::-;23169:74;;23252:93;23341:3;23252:93;:::i;:::-;23370:2;23365:3;23361:12;23354:19;;23013:366;;;:::o;23385:419::-;23551:4;23589:2;23578:9;23574:18;23566:26;;23638:9;23632:4;23628:20;23624:1;23613:9;23609:17;23602:47;23666:131;23792:4;23666:131;:::i;:::-;23658:139;;23385:419;;;:::o;23810:240::-;23950:34;23946:1;23938:6;23934:14;23927:58;24019:23;24014:2;24006:6;24002:15;23995:48;23810:240;:::o;24056:366::-;24198:3;24219:67;24283:2;24278:3;24219:67;:::i;:::-;24212:74;;24295:93;24384:3;24295:93;:::i;:::-;24413:2;24408:3;24404:12;24397:19;;24056:366;;;:::o;24428:419::-;24594:4;24632:2;24621:9;24617:18;24609:26;;24681:9;24675:4;24671:20;24667:1;24656:9;24652:17;24645:47;24709:131;24835:4;24709:131;:::i;:::-;24701:139;;24428:419;;;:::o;24853:169::-;24993:21;24989:1;24981:6;24977:14;24970:45;24853:169;:::o;25028:366::-;25170:3;25191:67;25255:2;25250:3;25191:67;:::i;:::-;25184:74;;25267:93;25356:3;25267:93;:::i;:::-;25385:2;25380:3;25376:12;25369:19;;25028:366;;;:::o;25400:419::-;25566:4;25604:2;25593:9;25589:18;25581:26;;25653:9;25647:4;25643:20;25639:1;25628:9;25624:17;25617:47;25681:131;25807:4;25681:131;:::i;:::-;25673:139;;25400:419;;;:::o;25825:194::-;25865:4;25885:20;25903:1;25885:20;:::i;:::-;25880:25;;25919:20;25937:1;25919:20;:::i;:::-;25914:25;;25963:1;25960;25956:9;25948:17;;25987:1;25981:4;25978:11;25975:37;;;25992:18;;:::i;:::-;25975:37;25825:194;;;;:::o;26025:225::-;26165:34;26161:1;26153:6;26149:14;26142:58;26234:8;26229:2;26221:6;26217:15;26210:33;26025:225;:::o;26256:366::-;26398:3;26419:67;26483:2;26478:3;26419:67;:::i;:::-;26412:74;;26495:93;26584:3;26495:93;:::i;:::-;26613:2;26608:3;26604:12;26597:19;;26256:366;;;:::o;26628:419::-;26794:4;26832:2;26821:9;26817:18;26809:26;;26881:9;26875:4;26871:20;26867:1;26856:9;26852:17;26845:47;26909:131;27035:4;26909:131;:::i;:::-;26901:139;;26628:419;;;:::o;27053:180::-;27101:77;27098:1;27091:88;27198:4;27195:1;27188:15;27222:4;27219:1;27212:15;27239:180;27287:77;27284:1;27277:88;27384:4;27381:1;27374:15;27408:4;27405:1;27398:15;27425:85;27470:7;27499:5;27488:16;;27425:85;;;:::o;27516:158::-;27574:9;27607:61;27625:42;27634:32;27660:5;27634:32;:::i;:::-;27625:42;:::i;:::-;27607:61;:::i;:::-;27594:74;;27516:158;;;:::o;27680:147::-;27775:45;27814:5;27775:45;:::i;:::-;27770:3;27763:58;27680:147;;:::o;27833:114::-;27900:6;27934:5;27928:12;27918:22;;27833:114;;;:::o;27953:184::-;28052:11;28086:6;28081:3;28074:19;28126:4;28121:3;28117:14;28102:29;;27953:184;;;;:::o;28143:132::-;28210:4;28233:3;28225:11;;28263:4;28258:3;28254:14;28246:22;;28143:132;;;:::o;28281:108::-;28358:24;28376:5;28358:24;:::i;:::-;28353:3;28346:37;28281:108;;:::o;28395:179::-;28464:10;28485:46;28527:3;28519:6;28485:46;:::i;:::-;28563:4;28558:3;28554:14;28540:28;;28395:179;;;;:::o;28580:113::-;28650:4;28682;28677:3;28673:14;28665:22;;28580:113;;;:::o;28729:732::-;28848:3;28877:54;28925:5;28877:54;:::i;:::-;28947:86;29026:6;29021:3;28947:86;:::i;:::-;28940:93;;29057:56;29107:5;29057:56;:::i;:::-;29136:7;29167:1;29152:284;29177:6;29174:1;29171:13;29152:284;;;29253:6;29247:13;29280:63;29339:3;29324:13;29280:63;:::i;:::-;29273:70;;29366:60;29419:6;29366:60;:::i;:::-;29356:70;;29212:224;29199:1;29196;29192:9;29187:14;;29152:284;;;29156:14;29452:3;29445:10;;28853:608;;;28729:732;;;;:::o;29467:831::-;29730:4;29768:3;29757:9;29753:19;29745:27;;29782:71;29850:1;29839:9;29835:17;29826:6;29782:71;:::i;:::-;29863:80;29939:2;29928:9;29924:18;29915:6;29863:80;:::i;:::-;29990:9;29984:4;29980:20;29975:2;29964:9;29960:18;29953:48;30018:108;30121:4;30112:6;30018:108;:::i;:::-;30010:116;;30136:72;30204:2;30193:9;30189:18;30180:6;30136:72;:::i;:::-;30218:73;30286:3;30275:9;30271:19;30262:6;30218:73;:::i;:::-;29467:831;;;;;;;;:::o

Swarm Source

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

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