ETH Price: $2,812.44 (+2.63%)
 

Overview

Max Total Supply

100,000,000,000 xShiba

Holders

29

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
myth1c.eth
Balance
471,591,360.881453440930526476 xShiba

Value
$0.00
0x48f5fc195c492930c98cdf07c7e7b0496ec9eaa6
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:
xShiba

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-03-04
*/

/**

/* Shib is a failed experiment.
    It's time for a new movement.
     100% Decentralised.
     100% Community-led.
     0% VC dumpfest.*/


// 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 xShiba 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 public deployerAddress;
    address public lpLocker;

    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("AntiShiba", "xShiba") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

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

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


        uint256 _buydevfee = 1;
        uint256 _buyLiquidityFee = 1;

        uint256 _selldevfee = 0;
        uint256 _sellLiquidityFee = 20;

        uint256 totalSupply = 100_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
        deployerAddress = address(msg.sender); 
        lpLocker = address(msg.sender); 

        // exclude from paying fees or having max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);
        excludeFromFees(deployerAddress, true); // Deployer Address
        excludeFromFees(lpLocker, true); // LP Locker

        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);
        excludeFromMaxTransaction(deployerAddress, true); // Deployer Address
        excludeFromMaxTransaction(lpLocker, true); // LP Locker

        /*
            _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":"deployerAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpLocker","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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"}]

60c060405273c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600d60006101000a81548160ff0219169083151502179055506000600d60016101000a81548160ff0219169083151502179055506001600d60026101000a81548160ff021916908315150217905550348015620000b757600080fd5b506040518060400160405280600981526020017f416e7469536869626100000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f785368696261000000000000000000000000000000000000000000000000000081525081600390805190602001906200013c92919062000afb565b5080600490805190602001906200015592919062000afb565b505050620001786200016c6200065c60201b60201c565b6200066460201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050620001a48160016200072a60201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000224573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200024a919062000c15565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518363ffffffff1660e01b8152600401620002a892919062000c58565b6020604051808303816000875af1158015620002c8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002ee919062000c15565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200033660a05160016200072a60201b60201c565b6000600190506000600190506000806014905060006c01431e0fae6d7217caa000000090506103e86014826200036d919062000cbe565b62000379919062000d4e565b600a819055506103e860148262000391919062000cbe565b6200039d919062000d4e565b600c81905550612710600582620003b5919062000cbe565b620003c1919062000d4e565b600b8190555084600f8190555083601081905550601054600f54620003e7919062000d86565b600e8190555082601281905550816013819055506013546012546200040d919062000d86565b60118190555033600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555033600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555033600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620004f8620004ea6200081460201b60201c565b60016200083e60201b60201c565b6200050b3060016200083e60201b60201c565b6200052061dead60016200083e60201b60201c565b62000555600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200083e60201b60201c565b6200058a600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200083e60201b60201c565b620005ac6200059e6200081460201b60201c565b60016200072a60201b60201c565b620005bf3060016200072a60201b60201c565b620005d461dead60016200072a60201b60201c565b62000609600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200072a60201b60201c565b6200063e600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200072a60201b60201c565b6200065033826200097860201b60201c565b50505050505062000fa5565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200073a6200065c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620007606200081460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620007b9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007b09062000e44565b60405180910390fd5b80601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6200084e6200065c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620008746200081460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620008cd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008c49062000e44565b60405180910390fd5b80601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516200096c919062000e83565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620009eb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009e29062000ef0565b60405180910390fd5b620009ff6000838362000af160201b60201c565b806002600082825462000a13919062000d86565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000a6a919062000d86565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000ad1919062000f23565b60405180910390a362000aed6000838362000af660201b60201c565b5050565b505050565b505050565b82805462000b099062000f6f565b90600052602060002090601f01602090048101928262000b2d576000855562000b79565b82601f1062000b4857805160ff191683800117855562000b79565b8280016001018555821562000b79579182015b8281111562000b7857825182559160200191906001019062000b5b565b5b50905062000b88919062000b8c565b5090565b5b8082111562000ba757600081600090555060010162000b8d565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000bdd8262000bb0565b9050919050565b62000bef8162000bd0565b811462000bfb57600080fd5b50565b60008151905062000c0f8162000be4565b92915050565b60006020828403121562000c2e5762000c2d62000bab565b5b600062000c3e8482850162000bfe565b91505092915050565b62000c528162000bd0565b82525050565b600060408201905062000c6f600083018562000c47565b62000c7e602083018462000c47565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000ccb8262000c85565b915062000cd88362000c85565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000d145762000d1362000c8f565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000d5b8262000c85565b915062000d688362000c85565b92508262000d7b5762000d7a62000d1f565b5b828204905092915050565b600062000d938262000c85565b915062000da08362000c85565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000dd85762000dd762000c8f565b5b828201905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000e2c60208362000de3565b915062000e398262000df4565b602082019050919050565b6000602082019050818103600083015262000e5f8162000e1d565b9050919050565b60008115159050919050565b62000e7d8162000e66565b82525050565b600060208201905062000e9a600083018462000e72565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000ed8601f8362000de3565b915062000ee58262000ea0565b602082019050919050565b6000602082019050818103600083015262000f0b8162000ec9565b9050919050565b62000f1d8162000c85565b82525050565b600060208201905062000f3a600083018462000f12565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000f8857607f821691505b6020821081141562000f9f5762000f9e62000f40565b5b50919050565b60805160a051613cbe62000ffc60003960008181610f6301528181611fd00152818161221901528181612424015281816124ef01526125d9015260008181610bdd01528181612b070152612b2e0152613cbe6000f3fe6080604052600436106102605760003560e01c8063715018a611610144578063c18bc195116100b6578063e2f456051161007a578063e2f45605146108fb578063efdee94f14610926578063f11a24d314610951578063f2fde38b1461097c578063f6374342146109a5578063f8b45b05146109d057610267565b8063c18bc19514610802578063c8c8ebe41461082b578063d257b34f14610856578063d85ba06314610893578063dd62ed3e146108be57610267565b80638da5cb5b116101085780638da5cb5b146106f2578063924de9b71461071d57806395d89b4114610746578063a9059cbb14610771578063bbc0c742146107ae578063c0246668146107d957610267565b8063715018a614610645578063751039fc1461065c5780637571336a146106875780638322fff2146106b05780638a8c523c146106db57610267565b806327c8f835116101dd5780634fbee193116101a15780634fbee1931461052157806365c1bef81461055e57806366ca9b83146105895780636a486a8e146105b25780636ddd1713146105dd57806370a082311461060857610267565b806327c8f8351461044a578063313ce56714610475578063489ae78d146104a057806349bd5a5e146104cb5780634a62bb65146104f657610267565b80631694505e116102245780631694505e1461036557806318160ddd146103905780631816467f146103bb578063203e727e146103e457806323b872dd1461040d57610267565b806302dbd8f81461026c57806303fc20131461029557806306fdde03146102c0578063095ea7b3146102eb57806310d5de531461032857610267565b3661026757005b600080fd5b34801561027857600080fd5b50610293600480360381019061028e9190612c21565b6109fb565b005b3480156102a157600080fd5b506102aa610ae5565b6040516102b79190612ca2565b60405180910390f35b3480156102cc57600080fd5b506102d5610b0b565b6040516102e29190612d56565b60405180910390f35b3480156102f757600080fd5b50610312600480360381019061030d9190612da4565b610b9d565b60405161031f9190612dff565b60405180910390f35b34801561033457600080fd5b5061034f600480360381019061034a9190612e1a565b610bbb565b60405161035c9190612dff565b60405180910390f35b34801561037157600080fd5b5061037a610bdb565b6040516103879190612ea6565b60405180910390f35b34801561039c57600080fd5b506103a5610bff565b6040516103b29190612ed0565b60405180910390f35b3480156103c757600080fd5b506103e260048036038101906103dd9190612e1a565b610c09565b005b3480156103f057600080fd5b5061040b60048036038101906104069190612eeb565b610d45565b005b34801561041957600080fd5b50610434600480360381019061042f9190612f18565b610e54565b6040516104419190612dff565b60405180910390f35b34801561045657600080fd5b5061045f610f4c565b60405161046c9190612ca2565b60405180910390f35b34801561048157600080fd5b5061048a610f52565b6040516104979190612f87565b60405180910390f35b3480156104ac57600080fd5b506104b5610f5b565b6040516104c29190612ed0565b60405180910390f35b3480156104d757600080fd5b506104e0610f61565b6040516104ed9190612ca2565b60405180910390f35b34801561050257600080fd5b5061050b610f85565b6040516105189190612dff565b60405180910390f35b34801561052d57600080fd5b5061054860048036038101906105439190612e1a565b610f98565b6040516105559190612dff565b60405180910390f35b34801561056a57600080fd5b50610573610fee565b6040516105809190612ed0565b60405180910390f35b34801561059557600080fd5b506105b060048036038101906105ab9190612c21565b610ff4565b005b3480156105be57600080fd5b506105c76110de565b6040516105d49190612ed0565b60405180910390f35b3480156105e957600080fd5b506105f26110e4565b6040516105ff9190612dff565b60405180910390f35b34801561061457600080fd5b5061062f600480360381019061062a9190612e1a565b6110f7565b60405161063c9190612ed0565b60405180910390f35b34801561065157600080fd5b5061065a61113f565b005b34801561066857600080fd5b506106716111c7565b60405161067e9190612dff565b60405180910390f35b34801561069357600080fd5b506106ae60048036038101906106a99190612fce565b611267565b005b3480156106bc57600080fd5b506106c561133e565b6040516106d29190612ca2565b60405180910390f35b3480156106e757600080fd5b506106f0611364565b005b3480156106fe57600080fd5b50610707611418565b6040516107149190612ca2565b60405180910390f35b34801561072957600080fd5b50610744600480360381019061073f919061300e565b611442565b005b34801561075257600080fd5b5061075b6114db565b6040516107689190612d56565b60405180910390f35b34801561077d57600080fd5b5061079860048036038101906107939190612da4565b61156d565b6040516107a59190612dff565b60405180910390f35b3480156107ba57600080fd5b506107c361158b565b6040516107d09190612dff565b60405180910390f35b3480156107e557600080fd5b5061080060048036038101906107fb9190612fce565b61159e565b005b34801561080e57600080fd5b5061082960048036038101906108249190612eeb565b6116c3565b005b34801561083757600080fd5b506108406117d2565b60405161084d9190612ed0565b60405180910390f35b34801561086257600080fd5b5061087d60048036038101906108789190612eeb565b6117d8565b60405161088a9190612dff565b60405180910390f35b34801561089f57600080fd5b506108a861192d565b6040516108b59190612ed0565b60405180910390f35b3480156108ca57600080fd5b506108e560048036038101906108e0919061303b565b611933565b6040516108f29190612ed0565b60405180910390f35b34801561090757600080fd5b506109106119ba565b60405161091d9190612ed0565b60405180910390f35b34801561093257600080fd5b5061093b6119c0565b6040516109489190612ca2565b60405180910390f35b34801561095d57600080fd5b506109666119e6565b6040516109739190612ed0565b60405180910390f35b34801561098857600080fd5b506109a3600480360381019061099e9190612e1a565b6119ec565b005b3480156109b157600080fd5b506109ba611ae4565b6040516109c79190612ed0565b60405180910390f35b3480156109dc57600080fd5b506109e5611aea565b6040516109f29190612ed0565b60405180910390f35b610a03611af0565b73ffffffffffffffffffffffffffffffffffffffff16610a21611418565b73ffffffffffffffffffffffffffffffffffffffff1614610a77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6e906130c7565b60405180910390fd5b8160128190555080601381905550601354601254610a959190613116565b60118190555060326011541115610ae1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad8906131b8565b60405180910390fd5b5050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060038054610b1a90613207565b80601f0160208091040260200160405190810160405280929190818152602001828054610b4690613207565b8015610b935780601f10610b6857610100808354040283529160200191610b93565b820191906000526020600020905b815481529060010190602001808311610b7657829003601f168201915b5050505050905090565b6000610bb1610baa611af0565b8484611af8565b6001905092915050565b60156020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610c11611af0565b73ffffffffffffffffffffffffffffffffffffffff16610c2f611418565b73ffffffffffffffffffffffffffffffffffffffff1614610c85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7c906130c7565b60405180910390fd5b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610d4d611af0565b73ffffffffffffffffffffffffffffffffffffffff16610d6b611418565b73ffffffffffffffffffffffffffffffffffffffff1614610dc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db8906130c7565b60405180910390fd5b670de0b6b3a76400006103e86005610dd7610bff565b610de19190613239565b610deb91906132c2565b610df591906132c2565b811015610e37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2e90613365565b60405180910390fd5b670de0b6b3a764000081610e4b9190613239565b600a8190555050565b6000610e61848484611cc3565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610eac611af0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610f2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f23906133f7565b60405180910390fd5b610f4085610f38611af0565b858403611af8565b60019150509392505050565b61dead81565b60006012905090565b600f5481565b7f000000000000000000000000000000000000000000000000000000000000000081565b600d60009054906101000a900460ff1681565b6000601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60125481565b610ffc611af0565b73ffffffffffffffffffffffffffffffffffffffff1661101a611418565b73ffffffffffffffffffffffffffffffffffffffff1614611070576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611067906130c7565b60405180910390fd5b81600f8190555080601081905550601054600f5461108e9190613116565b600e81905550601e600e5411156110da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d1906131b8565b60405180910390fd5b5050565b60115481565b600d60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611147611af0565b73ffffffffffffffffffffffffffffffffffffffff16611165611418565b73ffffffffffffffffffffffffffffffffffffffff16146111bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b2906130c7565b60405180910390fd5b6111c56000612625565b565b60006111d1611af0565b73ffffffffffffffffffffffffffffffffffffffff166111ef611418565b73ffffffffffffffffffffffffffffffffffffffff1614611245576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123c906130c7565b60405180910390fd5b6000600d60006101000a81548160ff0219169083151502179055506001905090565b61126f611af0565b73ffffffffffffffffffffffffffffffffffffffff1661128d611418565b73ffffffffffffffffffffffffffffffffffffffff16146112e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112da906130c7565b60405180910390fd5b80601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61136c611af0565b73ffffffffffffffffffffffffffffffffffffffff1661138a611418565b73ffffffffffffffffffffffffffffffffffffffff16146113e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d7906130c7565b60405180910390fd5b6001600d60016101000a81548160ff0219169083151502179055506001600d60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61144a611af0565b73ffffffffffffffffffffffffffffffffffffffff16611468611418565b73ffffffffffffffffffffffffffffffffffffffff16146114be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b5906130c7565b60405180910390fd5b80600d60026101000a81548160ff02191690831515021790555050565b6060600480546114ea90613207565b80601f016020809104026020016040519081016040528092919081815260200182805461151690613207565b80156115635780601f1061153857610100808354040283529160200191611563565b820191906000526020600020905b81548152906001019060200180831161154657829003601f168201915b5050505050905090565b600061158161157a611af0565b8484611cc3565b6001905092915050565b600d60019054906101000a900460ff1681565b6115a6611af0565b73ffffffffffffffffffffffffffffffffffffffff166115c4611418565b73ffffffffffffffffffffffffffffffffffffffff161461161a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611611906130c7565b60405180910390fd5b80601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516116b79190612dff565b60405180910390a25050565b6116cb611af0565b73ffffffffffffffffffffffffffffffffffffffff166116e9611418565b73ffffffffffffffffffffffffffffffffffffffff161461173f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611736906130c7565b60405180910390fd5b670de0b6b3a76400006103e86005611755610bff565b61175f9190613239565b61176991906132c2565b61177391906132c2565b8110156117b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ac90613489565b60405180910390fd5b670de0b6b3a7640000816117c99190613239565b600c8190555050565b600a5481565b60006117e2611af0565b73ffffffffffffffffffffffffffffffffffffffff16611800611418565b73ffffffffffffffffffffffffffffffffffffffff1614611856576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184d906130c7565b60405180910390fd5b620186a06001611864610bff565b61186e9190613239565b61187891906132c2565b8210156118ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b19061351b565b60405180910390fd5b6103e860056118c7610bff565b6118d19190613239565b6118db91906132c2565b82111561191d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611914906135ad565b60405180910390fd5b81600b8190555060019050919050565b600e5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600b5481565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60105481565b6119f4611af0565b73ffffffffffffffffffffffffffffffffffffffff16611a12611418565b73ffffffffffffffffffffffffffffffffffffffff1614611a68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5f906130c7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ad8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611acf9061363f565b60405180910390fd5b611ae181612625565b50565b60135481565b600c5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611b68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5f906136d1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bcf90613763565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611cb69190612ed0565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611d33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2a906137f5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611da3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9a90613887565b60405180910390fd5b6000811415611dbd57611db8838360006126eb565b612620565b600d60009054906101000a900460ff16156121c757611dda611418565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611e485750611e18611418565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611e815750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611ebb575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611ed45750600660149054906101000a900460ff16155b156121c657600d60019054906101000a900460ff16611fce57601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611f8e5750601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611fcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc4906138f3565b60405180910390fd5b5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480156120735750601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561211a57600a548111156120bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b490613985565b60405180910390fd5b600c546120c9836110f7565b826120d49190613116565b1115612115576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210c906139f1565b60405180910390fd5b6121c5565b601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166121c457600c54612177836110f7565b826121829190613116565b11156121c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ba906139f1565b60405180910390fd5b5b5b5b5b60006121d2306110f7565b90506000600b5482101590508080156121f75750600d60029054906101000a900460ff165b80156122105750600660149054906101000a900460ff16155b801561226757507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b80156122bd5750601460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156123135750601460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612357576001600660146101000a81548160ff02191690831515021790555061233b61296c565b6000600660146101000a81548160ff0219169083151502179055505b6000600660149054906101000a900460ff16159050601460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061240d5750601460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561241757600090505b6000806000831561260e577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff1614801561247f57506000601154115b156124ed576124ac606461249e6011548a6129bd90919063ffffffff16565b6129d390919063ffffffff16565b9250601154601354846124bf9190613239565b6124c991906132c2565b9150601154601254846124dc9190613239565b6124e691906132c2565b90506125b5565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff1614801561254a57506000600e54115b156125b4576125776064612569600e548a6129bd90919063ffffffff16565b6129d390919063ffffffff16565b9250600e546010548461258a9190613239565b61259491906132c2565b9150600e54600f54846125a79190613239565b6125b191906132c2565b90505b5b60008311156125ca576125c98930856126eb565b5b60008211156125ff576125fe307f0000000000000000000000000000000000000000000000000000000000000000846126eb565b5b828761260b9190613a11565b96505b6126198989896126eb565b5050505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561275b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612752906137f5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156127cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127c290613887565b60405180910390fd5b6127d68383836129e9565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561285c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285390613ab7565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128ef9190613116565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516129539190612ed0565b60405180910390a36129668484846129ee565b50505050565b6000612977306110f7565b9050600081141561298857506129bb565b6014600b546129979190613239565b8111156129b0576014600b546129ad9190613239565b90505b6129b9816129f3565b505b565b600081836129cb9190613239565b905092915050565b600081836129e191906132c2565b905092915050565b505050565b505050565b6000600267ffffffffffffffff811115612a1057612a0f613ad7565b5b604051908082528060200260200182016040528015612a3e5781602001602082028036833780820191505090505b5090503081600081518110612a5657612a55613b06565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681600181518110612ac757612ac6613b06565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612b2c307f000000000000000000000000000000000000000000000000000000000000000084611af8565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16635c11d79583600084600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b8152600401612bb0959493929190613c2e565b600060405180830381600087803b158015612bca57600080fd5b505af1158015612bde573d6000803e3d6000fd5b505050505050565b600080fd5b6000819050919050565b612bfe81612beb565b8114612c0957600080fd5b50565b600081359050612c1b81612bf5565b92915050565b60008060408385031215612c3857612c37612be6565b5b6000612c4685828601612c0c565b9250506020612c5785828601612c0c565b9150509250929050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612c8c82612c61565b9050919050565b612c9c81612c81565b82525050565b6000602082019050612cb76000830184612c93565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612cf7578082015181840152602081019050612cdc565b83811115612d06576000848401525b50505050565b6000601f19601f8301169050919050565b6000612d2882612cbd565b612d328185612cc8565b9350612d42818560208601612cd9565b612d4b81612d0c565b840191505092915050565b60006020820190508181036000830152612d708184612d1d565b905092915050565b612d8181612c81565b8114612d8c57600080fd5b50565b600081359050612d9e81612d78565b92915050565b60008060408385031215612dbb57612dba612be6565b5b6000612dc985828601612d8f565b9250506020612dda85828601612c0c565b9150509250929050565b60008115159050919050565b612df981612de4565b82525050565b6000602082019050612e146000830184612df0565b92915050565b600060208284031215612e3057612e2f612be6565b5b6000612e3e84828501612d8f565b91505092915050565b6000819050919050565b6000612e6c612e67612e6284612c61565b612e47565b612c61565b9050919050565b6000612e7e82612e51565b9050919050565b6000612e9082612e73565b9050919050565b612ea081612e85565b82525050565b6000602082019050612ebb6000830184612e97565b92915050565b612eca81612beb565b82525050565b6000602082019050612ee56000830184612ec1565b92915050565b600060208284031215612f0157612f00612be6565b5b6000612f0f84828501612c0c565b91505092915050565b600080600060608486031215612f3157612f30612be6565b5b6000612f3f86828701612d8f565b9350506020612f5086828701612d8f565b9250506040612f6186828701612c0c565b9150509250925092565b600060ff82169050919050565b612f8181612f6b565b82525050565b6000602082019050612f9c6000830184612f78565b92915050565b612fab81612de4565b8114612fb657600080fd5b50565b600081359050612fc881612fa2565b92915050565b60008060408385031215612fe557612fe4612be6565b5b6000612ff385828601612d8f565b925050602061300485828601612fb9565b9150509250929050565b60006020828403121561302457613023612be6565b5b600061303284828501612fb9565b91505092915050565b6000806040838503121561305257613051612be6565b5b600061306085828601612d8f565b925050602061307185828601612d8f565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006130b1602083612cc8565b91506130bc8261307b565b602082019050919050565b600060208201905081810360008301526130e0816130a4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061312182612beb565b915061312c83612beb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613161576131606130e7565b5b828201905092915050565b7f4d757374206b656570206665657320617420313025206f72206c657373000000600082015250565b60006131a2601d83612cc8565b91506131ad8261316c565b602082019050919050565b600060208201905081810360008301526131d181613195565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061321f57607f821691505b60208210811415613233576132326131d8565b5b50919050565b600061324482612beb565b915061324f83612beb565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613288576132876130e7565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006132cd82612beb565b91506132d883612beb565b9250826132e8576132e7613293565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b600061334f602f83612cc8565b915061335a826132f3565b604082019050919050565b6000602082019050818103600083015261337e81613342565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006133e1602883612cc8565b91506133ec82613385565b604082019050919050565b60006020820190508181036000830152613410816133d4565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000613473602483612cc8565b915061347e82613417565b604082019050919050565b600060208201905081810360008301526134a281613466565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000613505603583612cc8565b9150613510826134a9565b604082019050919050565b60006020820190508181036000830152613534816134f8565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000613597603483612cc8565b91506135a28261353b565b604082019050919050565b600060208201905081810360008301526135c68161358a565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613629602683612cc8565b9150613634826135cd565b604082019050919050565b600060208201905081810360008301526136588161361c565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006136bb602483612cc8565b91506136c68261365f565b604082019050919050565b600060208201905081810360008301526136ea816136ae565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061374d602283612cc8565b9150613758826136f1565b604082019050919050565b6000602082019050818103600083015261377c81613740565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006137df602583612cc8565b91506137ea82613783565b604082019050919050565b6000602082019050818103600083015261380e816137d2565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613871602383612cc8565b915061387c82613815565b604082019050919050565b600060208201905081810360008301526138a081613864565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006138dd601683612cc8565b91506138e8826138a7565b602082019050919050565b6000602082019050818103600083015261390c816138d0565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b600061396f603583612cc8565b915061397a82613913565b604082019050919050565b6000602082019050818103600083015261399e81613962565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006139db601383612cc8565b91506139e6826139a5565b602082019050919050565b60006020820190508181036000830152613a0a816139ce565b9050919050565b6000613a1c82612beb565b9150613a2783612beb565b925082821015613a3a57613a396130e7565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613aa1602683612cc8565b9150613aac82613a45565b604082019050919050565b60006020820190508181036000830152613ad081613a94565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b6000613b5a613b55613b5084613b35565b612e47565b612beb565b9050919050565b613b6a81613b3f565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613ba581612c81565b82525050565b6000613bb78383613b9c565b60208301905092915050565b6000602082019050919050565b6000613bdb82613b70565b613be58185613b7b565b9350613bf083613b8c565b8060005b83811015613c21578151613c088882613bab565b9750613c1383613bc3565b925050600181019050613bf4565b5085935050505092915050565b600060a082019050613c436000830188612ec1565b613c506020830187613b61565b8181036040830152613c628186613bd0565b9050613c716060830185612c93565b613c7e6080830184612ec1565b969550505050505056fea26469706673582212203651f3f8fcdaef49c4f5ba96916a76db2298b6e77aa386ab002f35c70c8da43864736f6c634300080a0033

Deployed Bytecode

0x6080604052600436106102605760003560e01c8063715018a611610144578063c18bc195116100b6578063e2f456051161007a578063e2f45605146108fb578063efdee94f14610926578063f11a24d314610951578063f2fde38b1461097c578063f6374342146109a5578063f8b45b05146109d057610267565b8063c18bc19514610802578063c8c8ebe41461082b578063d257b34f14610856578063d85ba06314610893578063dd62ed3e146108be57610267565b80638da5cb5b116101085780638da5cb5b146106f2578063924de9b71461071d57806395d89b4114610746578063a9059cbb14610771578063bbc0c742146107ae578063c0246668146107d957610267565b8063715018a614610645578063751039fc1461065c5780637571336a146106875780638322fff2146106b05780638a8c523c146106db57610267565b806327c8f835116101dd5780634fbee193116101a15780634fbee1931461052157806365c1bef81461055e57806366ca9b83146105895780636a486a8e146105b25780636ddd1713146105dd57806370a082311461060857610267565b806327c8f8351461044a578063313ce56714610475578063489ae78d146104a057806349bd5a5e146104cb5780634a62bb65146104f657610267565b80631694505e116102245780631694505e1461036557806318160ddd146103905780631816467f146103bb578063203e727e146103e457806323b872dd1461040d57610267565b806302dbd8f81461026c57806303fc20131461029557806306fdde03146102c0578063095ea7b3146102eb57806310d5de531461032857610267565b3661026757005b600080fd5b34801561027857600080fd5b50610293600480360381019061028e9190612c21565b6109fb565b005b3480156102a157600080fd5b506102aa610ae5565b6040516102b79190612ca2565b60405180910390f35b3480156102cc57600080fd5b506102d5610b0b565b6040516102e29190612d56565b60405180910390f35b3480156102f757600080fd5b50610312600480360381019061030d9190612da4565b610b9d565b60405161031f9190612dff565b60405180910390f35b34801561033457600080fd5b5061034f600480360381019061034a9190612e1a565b610bbb565b60405161035c9190612dff565b60405180910390f35b34801561037157600080fd5b5061037a610bdb565b6040516103879190612ea6565b60405180910390f35b34801561039c57600080fd5b506103a5610bff565b6040516103b29190612ed0565b60405180910390f35b3480156103c757600080fd5b506103e260048036038101906103dd9190612e1a565b610c09565b005b3480156103f057600080fd5b5061040b60048036038101906104069190612eeb565b610d45565b005b34801561041957600080fd5b50610434600480360381019061042f9190612f18565b610e54565b6040516104419190612dff565b60405180910390f35b34801561045657600080fd5b5061045f610f4c565b60405161046c9190612ca2565b60405180910390f35b34801561048157600080fd5b5061048a610f52565b6040516104979190612f87565b60405180910390f35b3480156104ac57600080fd5b506104b5610f5b565b6040516104c29190612ed0565b60405180910390f35b3480156104d757600080fd5b506104e0610f61565b6040516104ed9190612ca2565b60405180910390f35b34801561050257600080fd5b5061050b610f85565b6040516105189190612dff565b60405180910390f35b34801561052d57600080fd5b5061054860048036038101906105439190612e1a565b610f98565b6040516105559190612dff565b60405180910390f35b34801561056a57600080fd5b50610573610fee565b6040516105809190612ed0565b60405180910390f35b34801561059557600080fd5b506105b060048036038101906105ab9190612c21565b610ff4565b005b3480156105be57600080fd5b506105c76110de565b6040516105d49190612ed0565b60405180910390f35b3480156105e957600080fd5b506105f26110e4565b6040516105ff9190612dff565b60405180910390f35b34801561061457600080fd5b5061062f600480360381019061062a9190612e1a565b6110f7565b60405161063c9190612ed0565b60405180910390f35b34801561065157600080fd5b5061065a61113f565b005b34801561066857600080fd5b506106716111c7565b60405161067e9190612dff565b60405180910390f35b34801561069357600080fd5b506106ae60048036038101906106a99190612fce565b611267565b005b3480156106bc57600080fd5b506106c561133e565b6040516106d29190612ca2565b60405180910390f35b3480156106e757600080fd5b506106f0611364565b005b3480156106fe57600080fd5b50610707611418565b6040516107149190612ca2565b60405180910390f35b34801561072957600080fd5b50610744600480360381019061073f919061300e565b611442565b005b34801561075257600080fd5b5061075b6114db565b6040516107689190612d56565b60405180910390f35b34801561077d57600080fd5b5061079860048036038101906107939190612da4565b61156d565b6040516107a59190612dff565b60405180910390f35b3480156107ba57600080fd5b506107c361158b565b6040516107d09190612dff565b60405180910390f35b3480156107e557600080fd5b5061080060048036038101906107fb9190612fce565b61159e565b005b34801561080e57600080fd5b5061082960048036038101906108249190612eeb565b6116c3565b005b34801561083757600080fd5b506108406117d2565b60405161084d9190612ed0565b60405180910390f35b34801561086257600080fd5b5061087d60048036038101906108789190612eeb565b6117d8565b60405161088a9190612dff565b60405180910390f35b34801561089f57600080fd5b506108a861192d565b6040516108b59190612ed0565b60405180910390f35b3480156108ca57600080fd5b506108e560048036038101906108e0919061303b565b611933565b6040516108f29190612ed0565b60405180910390f35b34801561090757600080fd5b506109106119ba565b60405161091d9190612ed0565b60405180910390f35b34801561093257600080fd5b5061093b6119c0565b6040516109489190612ca2565b60405180910390f35b34801561095d57600080fd5b506109666119e6565b6040516109739190612ed0565b60405180910390f35b34801561098857600080fd5b506109a3600480360381019061099e9190612e1a565b6119ec565b005b3480156109b157600080fd5b506109ba611ae4565b6040516109c79190612ed0565b60405180910390f35b3480156109dc57600080fd5b506109e5611aea565b6040516109f29190612ed0565b60405180910390f35b610a03611af0565b73ffffffffffffffffffffffffffffffffffffffff16610a21611418565b73ffffffffffffffffffffffffffffffffffffffff1614610a77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6e906130c7565b60405180910390fd5b8160128190555080601381905550601354601254610a959190613116565b60118190555060326011541115610ae1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad8906131b8565b60405180910390fd5b5050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060038054610b1a90613207565b80601f0160208091040260200160405190810160405280929190818152602001828054610b4690613207565b8015610b935780601f10610b6857610100808354040283529160200191610b93565b820191906000526020600020905b815481529060010190602001808311610b7657829003601f168201915b5050505050905090565b6000610bb1610baa611af0565b8484611af8565b6001905092915050565b60156020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610c11611af0565b73ffffffffffffffffffffffffffffffffffffffff16610c2f611418565b73ffffffffffffffffffffffffffffffffffffffff1614610c85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7c906130c7565b60405180910390fd5b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610d4d611af0565b73ffffffffffffffffffffffffffffffffffffffff16610d6b611418565b73ffffffffffffffffffffffffffffffffffffffff1614610dc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db8906130c7565b60405180910390fd5b670de0b6b3a76400006103e86005610dd7610bff565b610de19190613239565b610deb91906132c2565b610df591906132c2565b811015610e37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2e90613365565b60405180910390fd5b670de0b6b3a764000081610e4b9190613239565b600a8190555050565b6000610e61848484611cc3565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610eac611af0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610f2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f23906133f7565b60405180910390fd5b610f4085610f38611af0565b858403611af8565b60019150509392505050565b61dead81565b60006012905090565b600f5481565b7f000000000000000000000000f2845a517c45d5bb952865147f8170631ef9824a81565b600d60009054906101000a900460ff1681565b6000601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60125481565b610ffc611af0565b73ffffffffffffffffffffffffffffffffffffffff1661101a611418565b73ffffffffffffffffffffffffffffffffffffffff1614611070576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611067906130c7565b60405180910390fd5b81600f8190555080601081905550601054600f5461108e9190613116565b600e81905550601e600e5411156110da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d1906131b8565b60405180910390fd5b5050565b60115481565b600d60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611147611af0565b73ffffffffffffffffffffffffffffffffffffffff16611165611418565b73ffffffffffffffffffffffffffffffffffffffff16146111bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b2906130c7565b60405180910390fd5b6111c56000612625565b565b60006111d1611af0565b73ffffffffffffffffffffffffffffffffffffffff166111ef611418565b73ffffffffffffffffffffffffffffffffffffffff1614611245576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123c906130c7565b60405180910390fd5b6000600d60006101000a81548160ff0219169083151502179055506001905090565b61126f611af0565b73ffffffffffffffffffffffffffffffffffffffff1661128d611418565b73ffffffffffffffffffffffffffffffffffffffff16146112e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112da906130c7565b60405180910390fd5b80601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61136c611af0565b73ffffffffffffffffffffffffffffffffffffffff1661138a611418565b73ffffffffffffffffffffffffffffffffffffffff16146113e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d7906130c7565b60405180910390fd5b6001600d60016101000a81548160ff0219169083151502179055506001600d60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61144a611af0565b73ffffffffffffffffffffffffffffffffffffffff16611468611418565b73ffffffffffffffffffffffffffffffffffffffff16146114be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b5906130c7565b60405180910390fd5b80600d60026101000a81548160ff02191690831515021790555050565b6060600480546114ea90613207565b80601f016020809104026020016040519081016040528092919081815260200182805461151690613207565b80156115635780601f1061153857610100808354040283529160200191611563565b820191906000526020600020905b81548152906001019060200180831161154657829003601f168201915b5050505050905090565b600061158161157a611af0565b8484611cc3565b6001905092915050565b600d60019054906101000a900460ff1681565b6115a6611af0565b73ffffffffffffffffffffffffffffffffffffffff166115c4611418565b73ffffffffffffffffffffffffffffffffffffffff161461161a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611611906130c7565b60405180910390fd5b80601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516116b79190612dff565b60405180910390a25050565b6116cb611af0565b73ffffffffffffffffffffffffffffffffffffffff166116e9611418565b73ffffffffffffffffffffffffffffffffffffffff161461173f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611736906130c7565b60405180910390fd5b670de0b6b3a76400006103e86005611755610bff565b61175f9190613239565b61176991906132c2565b61177391906132c2565b8110156117b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ac90613489565b60405180910390fd5b670de0b6b3a7640000816117c99190613239565b600c8190555050565b600a5481565b60006117e2611af0565b73ffffffffffffffffffffffffffffffffffffffff16611800611418565b73ffffffffffffffffffffffffffffffffffffffff1614611856576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184d906130c7565b60405180910390fd5b620186a06001611864610bff565b61186e9190613239565b61187891906132c2565b8210156118ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b19061351b565b60405180910390fd5b6103e860056118c7610bff565b6118d19190613239565b6118db91906132c2565b82111561191d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611914906135ad565b60405180910390fd5b81600b8190555060019050919050565b600e5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600b5481565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60105481565b6119f4611af0565b73ffffffffffffffffffffffffffffffffffffffff16611a12611418565b73ffffffffffffffffffffffffffffffffffffffff1614611a68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5f906130c7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ad8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611acf9061363f565b60405180910390fd5b611ae181612625565b50565b60135481565b600c5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611b68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5f906136d1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bcf90613763565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611cb69190612ed0565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611d33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2a906137f5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611da3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9a90613887565b60405180910390fd5b6000811415611dbd57611db8838360006126eb565b612620565b600d60009054906101000a900460ff16156121c757611dda611418565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611e485750611e18611418565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611e815750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611ebb575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611ed45750600660149054906101000a900460ff16155b156121c657600d60019054906101000a900460ff16611fce57601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611f8e5750601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611fcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc4906138f3565b60405180910390fd5b5b7f000000000000000000000000f2845a517c45d5bb952865147f8170631ef9824a73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480156120735750601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561211a57600a548111156120bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b490613985565b60405180910390fd5b600c546120c9836110f7565b826120d49190613116565b1115612115576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210c906139f1565b60405180910390fd5b6121c5565b601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166121c457600c54612177836110f7565b826121829190613116565b11156121c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ba906139f1565b60405180910390fd5b5b5b5b5b60006121d2306110f7565b90506000600b5482101590508080156121f75750600d60029054906101000a900460ff165b80156122105750600660149054906101000a900460ff16155b801561226757507f000000000000000000000000f2845a517c45d5bb952865147f8170631ef9824a73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b80156122bd5750601460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156123135750601460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612357576001600660146101000a81548160ff02191690831515021790555061233b61296c565b6000600660146101000a81548160ff0219169083151502179055505b6000600660149054906101000a900460ff16159050601460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061240d5750601460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561241757600090505b6000806000831561260e577f000000000000000000000000f2845a517c45d5bb952865147f8170631ef9824a73ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff1614801561247f57506000601154115b156124ed576124ac606461249e6011548a6129bd90919063ffffffff16565b6129d390919063ffffffff16565b9250601154601354846124bf9190613239565b6124c991906132c2565b9150601154601254846124dc9190613239565b6124e691906132c2565b90506125b5565b7f000000000000000000000000f2845a517c45d5bb952865147f8170631ef9824a73ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff1614801561254a57506000600e54115b156125b4576125776064612569600e548a6129bd90919063ffffffff16565b6129d390919063ffffffff16565b9250600e546010548461258a9190613239565b61259491906132c2565b9150600e54600f54846125a79190613239565b6125b191906132c2565b90505b5b60008311156125ca576125c98930856126eb565b5b60008211156125ff576125fe307f000000000000000000000000f2845a517c45d5bb952865147f8170631ef9824a846126eb565b5b828761260b9190613a11565b96505b6126198989896126eb565b5050505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561275b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612752906137f5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156127cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127c290613887565b60405180910390fd5b6127d68383836129e9565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561285c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285390613ab7565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128ef9190613116565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516129539190612ed0565b60405180910390a36129668484846129ee565b50505050565b6000612977306110f7565b9050600081141561298857506129bb565b6014600b546129979190613239565b8111156129b0576014600b546129ad9190613239565b90505b6129b9816129f3565b505b565b600081836129cb9190613239565b905092915050565b600081836129e191906132c2565b905092915050565b505050565b505050565b6000600267ffffffffffffffff811115612a1057612a0f613ad7565b5b604051908082528060200260200182016040528015612a3e5781602001602082028036833780820191505090505b5090503081600081518110612a5657612a55613b06565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681600181518110612ac757612ac6613b06565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612b2c307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611af8565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff16635c11d79583600084600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b8152600401612bb0959493929190613c2e565b600060405180830381600087803b158015612bca57600080fd5b505af1158015612bde573d6000803e3d6000fd5b505050505050565b600080fd5b6000819050919050565b612bfe81612beb565b8114612c0957600080fd5b50565b600081359050612c1b81612bf5565b92915050565b60008060408385031215612c3857612c37612be6565b5b6000612c4685828601612c0c565b9250506020612c5785828601612c0c565b9150509250929050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612c8c82612c61565b9050919050565b612c9c81612c81565b82525050565b6000602082019050612cb76000830184612c93565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612cf7578082015181840152602081019050612cdc565b83811115612d06576000848401525b50505050565b6000601f19601f8301169050919050565b6000612d2882612cbd565b612d328185612cc8565b9350612d42818560208601612cd9565b612d4b81612d0c565b840191505092915050565b60006020820190508181036000830152612d708184612d1d565b905092915050565b612d8181612c81565b8114612d8c57600080fd5b50565b600081359050612d9e81612d78565b92915050565b60008060408385031215612dbb57612dba612be6565b5b6000612dc985828601612d8f565b9250506020612dda85828601612c0c565b9150509250929050565b60008115159050919050565b612df981612de4565b82525050565b6000602082019050612e146000830184612df0565b92915050565b600060208284031215612e3057612e2f612be6565b5b6000612e3e84828501612d8f565b91505092915050565b6000819050919050565b6000612e6c612e67612e6284612c61565b612e47565b612c61565b9050919050565b6000612e7e82612e51565b9050919050565b6000612e9082612e73565b9050919050565b612ea081612e85565b82525050565b6000602082019050612ebb6000830184612e97565b92915050565b612eca81612beb565b82525050565b6000602082019050612ee56000830184612ec1565b92915050565b600060208284031215612f0157612f00612be6565b5b6000612f0f84828501612c0c565b91505092915050565b600080600060608486031215612f3157612f30612be6565b5b6000612f3f86828701612d8f565b9350506020612f5086828701612d8f565b9250506040612f6186828701612c0c565b9150509250925092565b600060ff82169050919050565b612f8181612f6b565b82525050565b6000602082019050612f9c6000830184612f78565b92915050565b612fab81612de4565b8114612fb657600080fd5b50565b600081359050612fc881612fa2565b92915050565b60008060408385031215612fe557612fe4612be6565b5b6000612ff385828601612d8f565b925050602061300485828601612fb9565b9150509250929050565b60006020828403121561302457613023612be6565b5b600061303284828501612fb9565b91505092915050565b6000806040838503121561305257613051612be6565b5b600061306085828601612d8f565b925050602061307185828601612d8f565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006130b1602083612cc8565b91506130bc8261307b565b602082019050919050565b600060208201905081810360008301526130e0816130a4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061312182612beb565b915061312c83612beb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613161576131606130e7565b5b828201905092915050565b7f4d757374206b656570206665657320617420313025206f72206c657373000000600082015250565b60006131a2601d83612cc8565b91506131ad8261316c565b602082019050919050565b600060208201905081810360008301526131d181613195565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061321f57607f821691505b60208210811415613233576132326131d8565b5b50919050565b600061324482612beb565b915061324f83612beb565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613288576132876130e7565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006132cd82612beb565b91506132d883612beb565b9250826132e8576132e7613293565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b600061334f602f83612cc8565b915061335a826132f3565b604082019050919050565b6000602082019050818103600083015261337e81613342565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006133e1602883612cc8565b91506133ec82613385565b604082019050919050565b60006020820190508181036000830152613410816133d4565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000613473602483612cc8565b915061347e82613417565b604082019050919050565b600060208201905081810360008301526134a281613466565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000613505603583612cc8565b9150613510826134a9565b604082019050919050565b60006020820190508181036000830152613534816134f8565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000613597603483612cc8565b91506135a28261353b565b604082019050919050565b600060208201905081810360008301526135c68161358a565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613629602683612cc8565b9150613634826135cd565b604082019050919050565b600060208201905081810360008301526136588161361c565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006136bb602483612cc8565b91506136c68261365f565b604082019050919050565b600060208201905081810360008301526136ea816136ae565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061374d602283612cc8565b9150613758826136f1565b604082019050919050565b6000602082019050818103600083015261377c81613740565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006137df602583612cc8565b91506137ea82613783565b604082019050919050565b6000602082019050818103600083015261380e816137d2565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613871602383612cc8565b915061387c82613815565b604082019050919050565b600060208201905081810360008301526138a081613864565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006138dd601683612cc8565b91506138e8826138a7565b602082019050919050565b6000602082019050818103600083015261390c816138d0565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b600061396f603583612cc8565b915061397a82613913565b604082019050919050565b6000602082019050818103600083015261399e81613962565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006139db601383612cc8565b91506139e6826139a5565b602082019050919050565b60006020820190508181036000830152613a0a816139ce565b9050919050565b6000613a1c82612beb565b9150613a2783612beb565b925082821015613a3a57613a396130e7565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613aa1602683612cc8565b9150613aac82613a45565b604082019050919050565b60006020820190508181036000830152613ad081613a94565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b6000613b5a613b55613b5084613b35565b612e47565b612beb565b9050919050565b613b6a81613b3f565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613ba581612c81565b82525050565b6000613bb78383613b9c565b60208301905092915050565b6000602082019050919050565b6000613bdb82613b70565b613be58185613b7b565b9350613bf083613b8c565b8060005b83811015613c21578151613c088882613bab565b9750613c1383613bc3565b925050600181019050613bf4565b5085935050505092915050565b600060a082019050613c436000830188612ec1565b613c506020830187613b61565b8181036040830152613c628186613bd0565b9050613c716060830185612c93565b613c7e6080830184612ec1565b969550505050505056fea26469706673582212203651f3f8fcdaef49c4f5ba96916a76db2298b6e77aa386ab002f35c70c8da43864736f6c634300080a0033

Deployed Bytecode Sourcemap

24830:11163:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30535:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25208:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9686:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11853:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25859:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24906:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10806:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31051:189;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29298:275;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12504:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25009:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10648:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25542:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24964:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25389:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31250:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25647:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30216:311;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25612:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25469:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10977:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2921:103;;;;;;;;;;;;;:::i;:::-;;28602:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29845:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25069:63;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28438:112;;;;;;;;;;;;;:::i;:::-;;2270:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30108:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9905:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11317:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25429:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30861:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29581:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25274:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28793:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25508:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11555:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25316:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25171:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25573;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3179:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25679:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25356:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30535:318;2501:12;:10;:12::i;:::-;2490:23;;:7;:5;:7::i;:::-;:23;;;2482:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;30667:7:::1;30654:10;:20;;;;30704:13;30685:16;:32;;;;30757:16;;30744:10;;:29;;;;:::i;:::-;30728:13;:45;;;;30809:2;30792:13;;:19;;30784:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;30535:318:::0;;:::o;25208:23::-;;;;;;;;;;;;;:::o;9686:100::-;9740:13;9773:5;9766:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9686:100;:::o;11853:169::-;11936:4;11953:39;11962:12;:10;:12::i;:::-;11976:7;11985:6;11953:8;:39::i;:::-;12010:4;12003:11;;11853:169;;;;:::o;25859:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;24906:51::-;;;:::o;10806:108::-;10867:7;10894:12;;10887:19;;10806:108;:::o;31051:189::-;2501:12;:10;:12::i;:::-;2490:23;;:7;:5;:7::i;:::-;:23;;;2482:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;31187:9:::1;;;;;;;;;;;31156:41;;31173:12;31156:41;;;;;;;;;;;;31220:12;31208:9;;:24;;;;;;;;;;;;;;;;;;31051:189:::0;:::o;29298:275::-;2501:12;:10;:12::i;:::-;2490:23;;:7;:5;:7::i;:::-;:23;;;2482:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;29435:4:::1;29427;29422:1;29406:13;:11;:13::i;:::-;:17;;;;:::i;:::-;29405:26;;;;:::i;:::-;29404:35;;;;:::i;:::-;29394:6;:45;;29372:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;29558:6;29548;:17;;;;:::i;:::-;29525:20;:40;;;;29298:275:::0;:::o;12504:492::-;12644:4;12661:36;12671:6;12679:9;12690:6;12661:9;:36::i;:::-;12710:24;12737:11;:19;12749:6;12737:19;;;;;;;;;;;;;;;:33;12757:12;:10;:12::i;:::-;12737:33;;;;;;;;;;;;;;;;12710:60;;12809:6;12789:16;:26;;12781:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;12896:57;12905:6;12913:12;:10;:12::i;:::-;12946:6;12927:16;:25;12896:8;:57::i;:::-;12984:4;12977:11;;;12504:492;;;;;:::o;25009:53::-;25055:6;25009:53;:::o;10648:93::-;10706:5;10731:2;10724:9;;10648:93;:::o;25542:24::-;;;;:::o;24964:38::-;;;:::o;25389:33::-;;;;;;;;;;;;;:::o;31250:126::-;31316:4;31340:19;:28;31360:7;31340:28;;;;;;;;;;;;;;;;;;;;;;;;;31333:35;;31250:126;;;:::o;25647:25::-;;;;:::o;30216:311::-;2501:12;:10;:12::i;:::-;2490:23;;:7;:5;:7::i;:::-;:23;;;2482:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;30346:7:::1;30334:9;:19;;;;30382:13;30364:15;:31;;;;30433:15;;30421:9;;:27;;;;:::i;:::-;30406:12;:42;;;;30483:2;30467:12;;:18;;30459:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;30216:311:::0;;:::o;25612:28::-;;;;:::o;25469:30::-;;;;;;;;;;;;;:::o;10977:127::-;11051:7;11078:9;:18;11088:7;11078:18;;;;;;;;;;;;;;;;11071:25;;10977:127;;;:::o;2921:103::-;2501:12;:10;:12::i;:::-;2490:23;;:7;:5;:7::i;:::-;:23;;;2482:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2986:30:::1;3013:1;2986:18;:30::i;:::-;2921:103::o:0;28602:121::-;28654:4;2501:12;:10;:12::i;:::-;2490:23;;:7;:5;:7::i;:::-;:23;;;2482:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;28688:5:::1;28671:14;;:22;;;;;;;;;;;;;;;;;;28711:4;28704:11;;28602:121:::0;:::o;29845:167::-;2501:12;:10;:12::i;:::-;2490:23;;:7;:5;:7::i;:::-;:23;;;2482:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;30000:4:::1;29958:31;:39;29990:6;29958:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;29845:167:::0;;:::o;25069:63::-;;;;;;;;;;;;;:::o;28438:112::-;2501:12;:10;:12::i;:::-;2490:23;;:7;:5;:7::i;:::-;:23;;;2482:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;28509:4:::1;28493:13;;:20;;;;;;;;;;;;;;;;;;28538:4;28524:11;;:18;;;;;;;;;;;;;;;;;;28438:112::o:0;2270:87::-;2316:7;2343:6;;;;;;;;;;;2336:13;;2270:87;:::o;30108:100::-;2501:12;:10;:12::i;:::-;2490:23;;:7;:5;:7::i;:::-;:23;;;2482:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;30193:7:::1;30179:11;;:21;;;;;;;;;;;;;;;;;;30108:100:::0;:::o;9905:104::-;9961:13;9994:7;9987:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9905:104;:::o;11317:175::-;11403:4;11420:42;11430:12;:10;:12::i;:::-;11444:9;11455:6;11420:9;:42::i;:::-;11480:4;11473:11;;11317:175;;;;:::o;25429:33::-;;;;;;;;;;;;;:::o;30861:182::-;2501:12;:10;:12::i;:::-;2490:23;;:7;:5;:7::i;:::-;:23;;;2482:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;30977:8:::1;30946:19;:28;30966:7;30946:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;31017:7;31001:34;;;31026:8;31001:34;;;;;;:::i;:::-;;;;;;;;30861:182:::0;;:::o;29581:256::-;2501:12;:10;:12::i;:::-;2490:23;;:7;:5;:7::i;:::-;:23;;;2482:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;29721:4:::1;29713;29708:1;29692:13;:11;:13::i;:::-;:17;;;;:::i;:::-;29691:26;;;;:::i;:::-;29690:35;;;;:::i;:::-;29680:6;:45;;29658:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;29822:6;29812;:17;;;;:::i;:::-;29800:9;:29;;;;29581:256:::0;:::o;25274:35::-;;;;:::o;28793:497::-;28901:4;2501:12;:10;:12::i;:::-;2490:23;;:7;:5;:7::i;:::-;:23;;;2482:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;28980:6:::1;28975:1;28959:13;:11;:13::i;:::-;:17;;;;:::i;:::-;28958:28;;;;:::i;:::-;28945:9;:41;;28923:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;29135:4;29130:1;29114:13;:11;:13::i;:::-;:17;;;;:::i;:::-;29113:26;;;;:::i;:::-;29100:9;:39;;29078:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;29251:9;29230:18;:30;;;;29278:4;29271:11;;28793:497:::0;;;:::o;25508:27::-;;;;:::o;11555:151::-;11644:7;11671:11;:18;11683:5;11671:18;;;;;;;;;;;;;;;:27;11690:7;11671:27;;;;;;;;;;;;;;;;11664:34;;11555:151;;;;:::o;25316:33::-;;;;:::o;25171:30::-;;;;;;;;;;;;;:::o;25573:::-;;;;:::o;3179:201::-;2501:12;:10;:12::i;:::-;2490:23;;:7;:5;:7::i;:::-;:23;;;2482:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3288:1:::1;3268:22;;:8;:22;;;;3260:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3344:28;3363:8;3344:18;:28::i;:::-;3179:201:::0;:::o;25679:31::-;;;;:::o;25356:24::-;;;;:::o;943:98::-;996:7;1023:10;1016:17;;943:98;:::o;15345:380::-;15498:1;15481:19;;:5;:19;;;;15473:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15579:1;15560:21;;:7;:21;;;;15552:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15663:6;15633:11;:18;15645:5;15633:18;;;;;;;;;;;;;;;:27;15652:7;15633:27;;;;;;;;;;;;;;;:36;;;;15701:7;15685:32;;15694:5;15685:32;;;15710:6;15685:32;;;;;;:::i;:::-;;;;;;;;15345:380;;;:::o;31384:3679::-;31532:1;31516:18;;:4;:18;;;;31508:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;31609:1;31595:16;;:2;:16;;;;31587:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;31678:1;31668:6;:11;31664:93;;;31696:28;31712:4;31718:2;31722:1;31696:15;:28::i;:::-;31739:7;;31664:93;31773:14;;;;;;;;;;;31769:1430;;;31834:7;:5;:7::i;:::-;31826:15;;:4;:15;;;;:49;;;;;31868:7;:5;:7::i;:::-;31862:13;;:2;:13;;;;31826:49;:86;;;;;31910:1;31896:16;;:2;:16;;;;31826:86;:128;;;;;31947:6;31933:21;;:2;:21;;;;31826:128;:158;;;;;31976:8;;;;;;;;;;;31975:9;31826:158;31804:1384;;;32024:13;;;;;;;;;;;32019:223;;32096:19;:25;32116:4;32096:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;32125:19;:23;32145:2;32125:23;;;;;;;;;;;;;;;;;;;;;;;;;32096:52;32062:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;32019:223;32456:13;32448:21;;:4;:21;;;:82;;;;;32495:31;:35;32527:2;32495:35;;;;;;;;;;;;;;;;;;;;;;;;;32494:36;32448:82;32422:751;;;32617:20;;32607:6;:30;;32573:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;32825:9;;32808:13;32818:2;32808:9;:13::i;:::-;32799:6;:22;;;;:::i;:::-;:35;;32765:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;32422:751;;;32953:31;:35;32985:2;32953:35;;;;;;;;;;;;;;;;;;;;;;;;;32948:225;;33073:9;;33056:13;33066:2;33056:9;:13::i;:::-;33047:6;:22;;;;:::i;:::-;:35;;33013:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;32948:225;32422:751;31804:1384;31769:1430;33211:28;33242:24;33260:4;33242:9;:24::i;:::-;33211:55;;33279:12;33318:18;;33294:20;:42;;33279:57;;33367:7;:35;;;;;33391:11;;;;;;;;;;;33367:35;:61;;;;;33420:8;;;;;;;;;;;33419:9;33367:61;:97;;;;;33451:13;33445:19;;:2;:19;;;33367:97;:140;;;;;33482:19;:25;33502:4;33482:25;;;;;;;;;;;;;;;;;;;;;;;;;33481:26;33367:140;:181;;;;;33525:19;:23;33545:2;33525:23;;;;;;;;;;;;;;;;;;;;;;;;;33524:24;33367:181;33349:313;;;33586:4;33575:8;;:15;;;;;;;;;;;;;;;;;;33607:10;:8;:10::i;:::-;33645:5;33634:8;;:16;;;;;;;;;;;;;;;;;;33349:313;33674:12;33690:8;;;;;;;;;;;33689:9;33674:24;;33800:19;:25;33820:4;33800:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;33829:19;:23;33849:2;33829:23;;;;;;;;;;;;;;;;;;;;;;;;;33800:52;33796:100;;;33879:5;33869:15;;33796:100;33908:12;33935:26;33976:20;34089:7;34085:925;;;34147:13;34141:19;;:2;:19;;;:40;;;;;34180:1;34164:13;;:17;34141:40;34137:583;;;34209:34;34239:3;34209:25;34220:13;;34209:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;34202:41;;34311:13;;34291:16;;34284:4;:23;;;;:::i;:::-;34283:41;;;;:::i;:::-;34262:62;;34380:13;;34366:10;;34359:4;:17;;;;:::i;:::-;34358:35;;;;:::i;:::-;34343:50;;34137:583;;;34463:13;34455:21;;:4;:21;;;:41;;;;;34495:1;34480:12;;:16;34455:41;34451:269;;;34524:33;34553:3;34524:24;34535:12;;34524:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;34517:40;;34624:12;;34605:15;;34598:4;:22;;;;:::i;:::-;34597:39;;;;:::i;:::-;34576:60;;34692:12;;34679:9;;34672:4;:16;;;;:::i;:::-;34671:33;;;;:::i;:::-;34656:48;;34451:269;34137:583;34746:1;34740:4;:7;34736:90;;;34768:42;34784:4;34798;34805;34768:15;:42::i;:::-;34736:90;34865:1;34844:18;:22;34840:128;;;34887:65;34911:4;34918:13;34933:18;34887:15;:65::i;:::-;34840:128;34994:4;34984:14;;;;;:::i;:::-;;;34085:925;35022:33;35038:4;35044:2;35048:6;35022:15;:33::i;:::-;31497:3566;;;;;;31384:3679;;;;:::o;3540:191::-;3614:16;3633:6;;;;;;;;;;;3614:25;;3659:8;3650:6;;:17;;;;;;;;;;;;;;;;;;3714:8;3683:40;;3704:8;3683:40;;;;;;;;;;;;3603:128;3540:191;:::o;13486:733::-;13644:1;13626:20;;:6;:20;;;;13618:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;13728:1;13707:23;;:9;:23;;;;13699:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;13783:47;13804:6;13812:9;13823:6;13783:20;:47::i;:::-;13843:21;13867:9;:17;13877:6;13867:17;;;;;;;;;;;;;;;;13843:41;;13920:6;13903:13;:23;;13895:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;14041:6;14025:13;:22;14005:9;:17;14015:6;14005:17;;;;;;;;;;;;;;;:42;;;;14093:6;14069:9;:20;14079:9;14069:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;14134:9;14117:35;;14126:6;14117:35;;;14145:6;14117:35;;;;;;:::i;:::-;;;;;;;;14165:46;14185:6;14193:9;14204:6;14165:19;:46::i;:::-;13607:612;13486:733;;;:::o;35649:339::-;35688:23;35714:24;35732:4;35714:9;:24::i;:::-;35688:50;;35772:1;35753:15;:20;35749:59;;;35790:7;;;35749:59;35863:2;35842:18;;:23;;;;:::i;:::-;35824:15;:41;35820:115;;;35921:2;35900:18;;:23;;;;:::i;:::-;35882:41;;35820:115;35947:33;35964:15;35947:16;:33::i;:::-;35677:311;35649:339;:::o;20798:98::-;20856:7;20887:1;20883;:5;;;;:::i;:::-;20876:12;;20798:98;;;;:::o;21197:::-;21255:7;21286:1;21282;:5;;;;:::i;:::-;21275:12;;21197:98;;;;:::o;16325:125::-;;;;:::o;17054:124::-;;;;:::o;35071:570::-;35197:21;35235:1;35221:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35197:40;;35266:4;35248;35253:1;35248:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;35292:3;;;;;;;;;;;35282:4;35287:1;35282:7;;;;;;;;:::i;:::-;;;;;;;:13;;;;;;;;;;;35308:62;35325:4;35340:15;35358:11;35308:8;:62::i;:::-;35409:15;:69;;;35493:11;35519:1;35564:4;35583:9;;;;;;;;;;;35607:15;35409:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35126:515;35071: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:126::-;1207:7;1247:42;1240:5;1236:54;1225:65;;1170:126;;;:::o;1302:96::-;1339:7;1368:24;1386:5;1368:24;:::i;:::-;1357:35;;1302:96;;;:::o;1404:118::-;1491:24;1509:5;1491:24;:::i;:::-;1486:3;1479:37;1404:118;;:::o;1528:222::-;1621:4;1659:2;1648:9;1644:18;1636:26;;1672:71;1740:1;1729:9;1725:17;1716:6;1672:71;:::i;:::-;1528:222;;;;:::o;1756:99::-;1808:6;1842:5;1836:12;1826:22;;1756:99;;;:::o;1861:169::-;1945:11;1979:6;1974:3;1967:19;2019:4;2014:3;2010:14;1995:29;;1861:169;;;;:::o;2036:307::-;2104:1;2114:113;2128:6;2125:1;2122:13;2114:113;;;2213:1;2208:3;2204:11;2198:18;2194:1;2189:3;2185:11;2178:39;2150:2;2147:1;2143:10;2138:15;;2114:113;;;2245:6;2242:1;2239:13;2236:101;;;2325:1;2316:6;2311:3;2307:16;2300:27;2236:101;2085:258;2036:307;;;:::o;2349:102::-;2390:6;2441:2;2437:7;2432:2;2425:5;2421:14;2417:28;2407:38;;2349:102;;;:::o;2457:364::-;2545:3;2573:39;2606:5;2573:39;:::i;:::-;2628:71;2692:6;2687:3;2628:71;:::i;:::-;2621:78;;2708:52;2753:6;2748:3;2741:4;2734:5;2730:16;2708:52;:::i;:::-;2785:29;2807:6;2785:29;:::i;:::-;2780:3;2776:39;2769:46;;2549:272;2457:364;;;;:::o;2827:313::-;2940:4;2978:2;2967:9;2963:18;2955:26;;3027:9;3021:4;3017:20;3013:1;3002:9;2998:17;2991:47;3055:78;3128:4;3119:6;3055:78;:::i;:::-;3047:86;;2827:313;;;;:::o;3146:122::-;3219:24;3237:5;3219:24;:::i;:::-;3212:5;3209:35;3199:63;;3258:1;3255;3248:12;3199:63;3146:122;:::o;3274:139::-;3320:5;3358:6;3345:20;3336:29;;3374:33;3401:5;3374:33;:::i;:::-;3274:139;;;;:::o;3419:474::-;3487:6;3495;3544:2;3532:9;3523:7;3519:23;3515:32;3512:119;;;3550:79;;:::i;:::-;3512:119;3670:1;3695:53;3740:7;3731:6;3720:9;3716:22;3695:53;:::i;:::-;3685:63;;3641:117;3797:2;3823:53;3868:7;3859:6;3848:9;3844:22;3823:53;:::i;:::-;3813:63;;3768:118;3419:474;;;;;:::o;3899:90::-;3933:7;3976:5;3969:13;3962:21;3951:32;;3899:90;;;:::o;3995:109::-;4076:21;4091:5;4076:21;:::i;:::-;4071:3;4064:34;3995:109;;:::o;4110:210::-;4197:4;4235:2;4224:9;4220:18;4212:26;;4248:65;4310:1;4299:9;4295:17;4286:6;4248:65;:::i;:::-;4110:210;;;;:::o;4326:329::-;4385:6;4434:2;4422:9;4413:7;4409:23;4405:32;4402:119;;;4440:79;;:::i;:::-;4402:119;4560:1;4585:53;4630:7;4621:6;4610:9;4606:22;4585:53;:::i;:::-;4575:63;;4531:117;4326:329;;;;:::o;4661:60::-;4689:3;4710:5;4703:12;;4661:60;;;:::o;4727:142::-;4777:9;4810:53;4828:34;4837:24;4855:5;4837:24;:::i;:::-;4828:34;:::i;:::-;4810:53;:::i;:::-;4797:66;;4727:142;;;:::o;4875:126::-;4925:9;4958:37;4989:5;4958:37;:::i;:::-;4945:50;;4875:126;;;:::o;5007:152::-;5083:9;5116:37;5147:5;5116:37;:::i;:::-;5103:50;;5007:152;;;:::o;5165:183::-;5278:63;5335:5;5278:63;:::i;:::-;5273:3;5266:76;5165:183;;:::o;5354:274::-;5473:4;5511:2;5500:9;5496:18;5488:26;;5524:97;5618:1;5607:9;5603:17;5594:6;5524:97;:::i;:::-;5354:274;;;;:::o;5634:118::-;5721:24;5739:5;5721:24;:::i;:::-;5716:3;5709:37;5634:118;;:::o;5758:222::-;5851:4;5889:2;5878:9;5874:18;5866:26;;5902:71;5970:1;5959:9;5955:17;5946:6;5902:71;:::i;:::-;5758:222;;;;:::o;5986:329::-;6045:6;6094:2;6082:9;6073:7;6069:23;6065:32;6062:119;;;6100:79;;:::i;:::-;6062:119;6220:1;6245:53;6290:7;6281:6;6270:9;6266:22;6245:53;:::i;:::-;6235:63;;6191:117;5986:329;;;;:::o;6321:619::-;6398:6;6406;6414;6463:2;6451:9;6442:7;6438:23;6434:32;6431:119;;;6469:79;;:::i;:::-;6431:119;6589:1;6614:53;6659:7;6650:6;6639:9;6635:22;6614:53;:::i;:::-;6604:63;;6560:117;6716:2;6742:53;6787:7;6778:6;6767:9;6763:22;6742:53;:::i;:::-;6732:63;;6687:118;6844:2;6870:53;6915:7;6906:6;6895:9;6891:22;6870:53;:::i;:::-;6860:63;;6815:118;6321:619;;;;;:::o;6946:86::-;6981:7;7021:4;7014:5;7010:16;6999:27;;6946:86;;;:::o;7038:112::-;7121:22;7137:5;7121:22;:::i;:::-;7116:3;7109:35;7038:112;;:::o;7156:214::-;7245:4;7283:2;7272:9;7268:18;7260:26;;7296:67;7360:1;7349:9;7345:17;7336:6;7296:67;:::i;:::-;7156:214;;;;:::o;7376:116::-;7446:21;7461:5;7446:21;:::i;:::-;7439:5;7436:32;7426:60;;7482:1;7479;7472:12;7426:60;7376:116;:::o;7498:133::-;7541:5;7579:6;7566:20;7557:29;;7595:30;7619:5;7595:30;:::i;:::-;7498:133;;;;:::o;7637:468::-;7702:6;7710;7759:2;7747:9;7738:7;7734:23;7730:32;7727:119;;;7765:79;;:::i;:::-;7727:119;7885:1;7910:53;7955:7;7946:6;7935:9;7931:22;7910:53;:::i;:::-;7900:63;;7856:117;8012:2;8038:50;8080:7;8071:6;8060:9;8056:22;8038:50;:::i;:::-;8028:60;;7983:115;7637:468;;;;;:::o;8111:323::-;8167:6;8216:2;8204:9;8195:7;8191:23;8187:32;8184:119;;;8222:79;;:::i;:::-;8184:119;8342:1;8367:50;8409:7;8400:6;8389:9;8385:22;8367:50;:::i;:::-;8357:60;;8313:114;8111:323;;;;:::o;8440:474::-;8508:6;8516;8565:2;8553:9;8544:7;8540:23;8536:32;8533:119;;;8571:79;;:::i;:::-;8533:119;8691:1;8716:53;8761:7;8752:6;8741:9;8737:22;8716:53;:::i;:::-;8706:63;;8662:117;8818:2;8844:53;8889:7;8880:6;8869:9;8865:22;8844:53;:::i;:::-;8834:63;;8789:118;8440:474;;;;;:::o;8920:182::-;9060:34;9056:1;9048:6;9044:14;9037:58;8920:182;:::o;9108:366::-;9250:3;9271:67;9335:2;9330:3;9271:67;:::i;:::-;9264:74;;9347:93;9436:3;9347:93;:::i;:::-;9465:2;9460:3;9456:12;9449:19;;9108:366;;;:::o;9480:419::-;9646:4;9684:2;9673:9;9669:18;9661:26;;9733:9;9727:4;9723:20;9719:1;9708:9;9704:17;9697:47;9761:131;9887:4;9761:131;:::i;:::-;9753:139;;9480:419;;;:::o;9905:180::-;9953:77;9950:1;9943:88;10050:4;10047:1;10040:15;10074:4;10071:1;10064:15;10091:305;10131:3;10150:20;10168:1;10150:20;:::i;:::-;10145:25;;10184:20;10202:1;10184:20;:::i;:::-;10179:25;;10338:1;10270:66;10266:74;10263:1;10260:81;10257:107;;;10344:18;;:::i;:::-;10257:107;10388:1;10385;10381:9;10374:16;;10091:305;;;;:::o;10402:179::-;10542:31;10538:1;10530:6;10526:14;10519:55;10402:179;:::o;10587:366::-;10729:3;10750:67;10814:2;10809:3;10750:67;:::i;:::-;10743:74;;10826:93;10915:3;10826:93;:::i;:::-;10944:2;10939:3;10935:12;10928:19;;10587:366;;;:::o;10959:419::-;11125:4;11163:2;11152:9;11148:18;11140:26;;11212:9;11206:4;11202:20;11198:1;11187:9;11183:17;11176:47;11240:131;11366:4;11240:131;:::i;:::-;11232:139;;10959:419;;;:::o;11384:180::-;11432:77;11429:1;11422:88;11529:4;11526:1;11519:15;11553:4;11550:1;11543:15;11570:320;11614:6;11651:1;11645:4;11641:12;11631:22;;11698:1;11692:4;11688:12;11719:18;11709:81;;11775:4;11767:6;11763:17;11753:27;;11709:81;11837:2;11829:6;11826:14;11806:18;11803:38;11800:84;;;11856:18;;:::i;:::-;11800:84;11621:269;11570:320;;;:::o;11896:348::-;11936:7;11959:20;11977:1;11959:20;:::i;:::-;11954:25;;11993:20;12011:1;11993:20;:::i;:::-;11988:25;;12181:1;12113:66;12109:74;12106:1;12103:81;12098:1;12091:9;12084:17;12080:105;12077:131;;;12188:18;;:::i;:::-;12077:131;12236:1;12233;12229:9;12218:20;;11896:348;;;;:::o;12250:180::-;12298:77;12295:1;12288:88;12395:4;12392:1;12385:15;12419:4;12416:1;12409:15;12436:185;12476:1;12493:20;12511:1;12493:20;:::i;:::-;12488:25;;12527:20;12545:1;12527:20;:::i;:::-;12522:25;;12566:1;12556:35;;12571:18;;:::i;:::-;12556:35;12613:1;12610;12606:9;12601:14;;12436:185;;;;:::o;12627:234::-;12767:34;12763:1;12755:6;12751:14;12744:58;12836:17;12831:2;12823:6;12819:15;12812:42;12627:234;:::o;12867:366::-;13009:3;13030:67;13094:2;13089:3;13030:67;:::i;:::-;13023:74;;13106:93;13195:3;13106:93;:::i;:::-;13224:2;13219:3;13215:12;13208:19;;12867:366;;;:::o;13239:419::-;13405:4;13443:2;13432:9;13428:18;13420:26;;13492:9;13486:4;13482:20;13478:1;13467:9;13463:17;13456:47;13520:131;13646:4;13520:131;:::i;:::-;13512:139;;13239:419;;;:::o;13664:227::-;13804:34;13800:1;13792:6;13788:14;13781:58;13873:10;13868:2;13860:6;13856:15;13849:35;13664:227;:::o;13897:366::-;14039:3;14060:67;14124:2;14119:3;14060:67;:::i;:::-;14053:74;;14136:93;14225:3;14136:93;:::i;:::-;14254:2;14249:3;14245:12;14238:19;;13897:366;;;:::o;14269:419::-;14435:4;14473:2;14462:9;14458:18;14450:26;;14522:9;14516:4;14512:20;14508:1;14497:9;14493:17;14486:47;14550:131;14676:4;14550:131;:::i;:::-;14542:139;;14269:419;;;:::o;14694:223::-;14834:34;14830:1;14822:6;14818:14;14811:58;14903:6;14898:2;14890:6;14886:15;14879:31;14694:223;:::o;14923:366::-;15065:3;15086:67;15150:2;15145:3;15086:67;:::i;:::-;15079:74;;15162:93;15251:3;15162:93;:::i;:::-;15280:2;15275:3;15271:12;15264:19;;14923:366;;;:::o;15295:419::-;15461:4;15499:2;15488:9;15484:18;15476:26;;15548:9;15542:4;15538:20;15534:1;15523:9;15519:17;15512:47;15576:131;15702:4;15576:131;:::i;:::-;15568:139;;15295:419;;;:::o;15720:240::-;15860:34;15856:1;15848:6;15844:14;15837:58;15929:23;15924:2;15916:6;15912:15;15905:48;15720:240;:::o;15966:366::-;16108:3;16129:67;16193:2;16188:3;16129:67;:::i;:::-;16122:74;;16205:93;16294:3;16205:93;:::i;:::-;16323:2;16318:3;16314:12;16307:19;;15966:366;;;:::o;16338:419::-;16504:4;16542:2;16531:9;16527:18;16519:26;;16591:9;16585:4;16581:20;16577:1;16566:9;16562:17;16555:47;16619:131;16745:4;16619:131;:::i;:::-;16611:139;;16338:419;;;:::o;16763:239::-;16903:34;16899:1;16891:6;16887:14;16880:58;16972:22;16967:2;16959:6;16955:15;16948:47;16763:239;:::o;17008:366::-;17150:3;17171:67;17235:2;17230:3;17171:67;:::i;:::-;17164:74;;17247:93;17336:3;17247:93;:::i;:::-;17365:2;17360:3;17356:12;17349:19;;17008:366;;;:::o;17380:419::-;17546:4;17584:2;17573:9;17569:18;17561:26;;17633:9;17627:4;17623:20;17619:1;17608:9;17604:17;17597:47;17661:131;17787:4;17661:131;:::i;:::-;17653:139;;17380:419;;;:::o;17805:225::-;17945:34;17941:1;17933:6;17929:14;17922:58;18014:8;18009:2;18001:6;17997:15;17990:33;17805:225;:::o;18036:366::-;18178:3;18199:67;18263:2;18258:3;18199:67;:::i;:::-;18192:74;;18275:93;18364:3;18275:93;:::i;:::-;18393:2;18388:3;18384:12;18377:19;;18036:366;;;:::o;18408:419::-;18574:4;18612:2;18601:9;18597:18;18589:26;;18661:9;18655:4;18651:20;18647:1;18636:9;18632:17;18625:47;18689:131;18815:4;18689:131;:::i;:::-;18681:139;;18408:419;;;:::o;18833:223::-;18973:34;18969:1;18961:6;18957:14;18950:58;19042:6;19037:2;19029:6;19025:15;19018:31;18833:223;:::o;19062:366::-;19204:3;19225:67;19289:2;19284:3;19225:67;:::i;:::-;19218:74;;19301:93;19390:3;19301:93;:::i;:::-;19419:2;19414:3;19410:12;19403:19;;19062:366;;;:::o;19434:419::-;19600:4;19638:2;19627:9;19623:18;19615:26;;19687:9;19681:4;19677:20;19673:1;19662:9;19658:17;19651:47;19715:131;19841:4;19715:131;:::i;:::-;19707:139;;19434:419;;;:::o;19859:221::-;19999:34;19995:1;19987:6;19983:14;19976:58;20068:4;20063:2;20055:6;20051:15;20044:29;19859:221;:::o;20086:366::-;20228:3;20249:67;20313:2;20308:3;20249:67;:::i;:::-;20242:74;;20325:93;20414:3;20325:93;:::i;:::-;20443:2;20438:3;20434:12;20427:19;;20086:366;;;:::o;20458:419::-;20624:4;20662:2;20651:9;20647:18;20639:26;;20711:9;20705:4;20701:20;20697:1;20686:9;20682:17;20675:47;20739:131;20865:4;20739:131;:::i;:::-;20731:139;;20458:419;;;:::o;20883:224::-;21023:34;21019:1;21011:6;21007:14;21000:58;21092:7;21087:2;21079:6;21075:15;21068:32;20883:224;:::o;21113:366::-;21255:3;21276:67;21340:2;21335:3;21276:67;:::i;:::-;21269:74;;21352:93;21441:3;21352:93;:::i;:::-;21470:2;21465:3;21461:12;21454:19;;21113:366;;;:::o;21485:419::-;21651:4;21689:2;21678:9;21674:18;21666:26;;21738:9;21732:4;21728:20;21724:1;21713:9;21709:17;21702:47;21766:131;21892:4;21766:131;:::i;:::-;21758:139;;21485:419;;;:::o;21910:222::-;22050:34;22046:1;22038:6;22034:14;22027:58;22119:5;22114:2;22106:6;22102:15;22095:30;21910:222;:::o;22138:366::-;22280:3;22301:67;22365:2;22360:3;22301:67;:::i;:::-;22294:74;;22377:93;22466:3;22377:93;:::i;:::-;22495:2;22490:3;22486:12;22479:19;;22138:366;;;:::o;22510:419::-;22676:4;22714:2;22703:9;22699:18;22691:26;;22763:9;22757:4;22753:20;22749:1;22738:9;22734:17;22727:47;22791:131;22917:4;22791:131;:::i;:::-;22783:139;;22510:419;;;:::o;22935:172::-;23075:24;23071:1;23063:6;23059:14;23052:48;22935:172;:::o;23113:366::-;23255:3;23276:67;23340:2;23335:3;23276:67;:::i;:::-;23269:74;;23352:93;23441:3;23352:93;:::i;:::-;23470:2;23465:3;23461:12;23454:19;;23113:366;;;:::o;23485:419::-;23651:4;23689:2;23678:9;23674:18;23666:26;;23738:9;23732:4;23728:20;23724:1;23713:9;23709:17;23702:47;23766:131;23892:4;23766:131;:::i;:::-;23758:139;;23485:419;;;:::o;23910:240::-;24050:34;24046:1;24038:6;24034:14;24027:58;24119:23;24114:2;24106:6;24102:15;24095:48;23910:240;:::o;24156:366::-;24298:3;24319:67;24383:2;24378:3;24319:67;:::i;:::-;24312:74;;24395:93;24484:3;24395:93;:::i;:::-;24513:2;24508:3;24504:12;24497:19;;24156:366;;;:::o;24528:419::-;24694:4;24732:2;24721:9;24717:18;24709:26;;24781:9;24775:4;24771:20;24767:1;24756:9;24752:17;24745:47;24809:131;24935:4;24809:131;:::i;:::-;24801:139;;24528:419;;;:::o;24953:169::-;25093:21;25089:1;25081:6;25077:14;25070:45;24953:169;:::o;25128:366::-;25270:3;25291:67;25355:2;25350:3;25291:67;:::i;:::-;25284:74;;25367:93;25456:3;25367:93;:::i;:::-;25485:2;25480:3;25476:12;25469:19;;25128:366;;;:::o;25500:419::-;25666:4;25704:2;25693:9;25689:18;25681:26;;25753:9;25747:4;25743:20;25739:1;25728:9;25724:17;25717:47;25781:131;25907:4;25781:131;:::i;:::-;25773:139;;25500:419;;;:::o;25925:191::-;25965:4;25985:20;26003:1;25985:20;:::i;:::-;25980:25;;26019:20;26037:1;26019:20;:::i;:::-;26014:25;;26058:1;26055;26052:8;26049:34;;;26063:18;;:::i;:::-;26049:34;26108:1;26105;26101:9;26093:17;;25925:191;;;;:::o;26122:225::-;26262:34;26258:1;26250:6;26246:14;26239:58;26331:8;26326:2;26318:6;26314:15;26307:33;26122:225;:::o;26353:366::-;26495:3;26516:67;26580:2;26575:3;26516:67;:::i;:::-;26509:74;;26592:93;26681:3;26592:93;:::i;:::-;26710:2;26705:3;26701:12;26694:19;;26353:366;;;:::o;26725:419::-;26891:4;26929:2;26918:9;26914:18;26906:26;;26978:9;26972:4;26968:20;26964:1;26953:9;26949:17;26942:47;27006:131;27132:4;27006:131;:::i;:::-;26998:139;;26725:419;;;:::o;27150:180::-;27198:77;27195:1;27188:88;27295:4;27292:1;27285:15;27319:4;27316:1;27309:15;27336:180;27384:77;27381:1;27374:88;27481:4;27478:1;27471:15;27505:4;27502:1;27495:15;27522:85;27567:7;27596:5;27585:16;;27522:85;;;:::o;27613:158::-;27671:9;27704:61;27722:42;27731:32;27757:5;27731:32;:::i;:::-;27722:42;:::i;:::-;27704:61;:::i;:::-;27691:74;;27613:158;;;:::o;27777:147::-;27872:45;27911:5;27872:45;:::i;:::-;27867:3;27860:58;27777:147;;:::o;27930:114::-;27997:6;28031:5;28025:12;28015:22;;27930:114;;;:::o;28050:184::-;28149:11;28183:6;28178:3;28171:19;28223:4;28218:3;28214:14;28199:29;;28050:184;;;;:::o;28240:132::-;28307:4;28330:3;28322:11;;28360:4;28355:3;28351:14;28343:22;;28240:132;;;:::o;28378:108::-;28455:24;28473:5;28455:24;:::i;:::-;28450:3;28443:37;28378:108;;:::o;28492:179::-;28561:10;28582:46;28624:3;28616:6;28582:46;:::i;:::-;28660:4;28655:3;28651:14;28637:28;;28492:179;;;;:::o;28677:113::-;28747:4;28779;28774:3;28770:14;28762:22;;28677:113;;;:::o;28826:732::-;28945:3;28974:54;29022:5;28974:54;:::i;:::-;29044:86;29123:6;29118:3;29044:86;:::i;:::-;29037:93;;29154:56;29204:5;29154:56;:::i;:::-;29233:7;29264:1;29249:284;29274:6;29271:1;29268:13;29249:284;;;29350:6;29344:13;29377:63;29436:3;29421:13;29377:63;:::i;:::-;29370:70;;29463:60;29516:6;29463:60;:::i;:::-;29453:70;;29309:224;29296:1;29293;29289:9;29284:14;;29249:284;;;29253:14;29549:3;29542:10;;28950:608;;;28826:732;;;;:::o;29564:831::-;29827:4;29865:3;29854:9;29850:19;29842:27;;29879:71;29947:1;29936:9;29932:17;29923:6;29879:71;:::i;:::-;29960:80;30036:2;30025:9;30021:18;30012:6;29960:80;:::i;:::-;30087:9;30081:4;30077:20;30072:2;30061:9;30057:18;30050:48;30115:108;30218:4;30209:6;30115:108;:::i;:::-;30107:116;;30233:72;30301:2;30290:9;30286:18;30277:6;30233:72;:::i;:::-;30315:73;30383:3;30372:9;30368:19;30359:6;30315:73;:::i;:::-;29564:831;;;;;;;;:::o

Swarm Source

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