ETH Price: $3,443.45 (-0.34%)
Gas: 3 Gwei

Token

Phunks Capital (PHUNKS)
 

Overview

Max Total Supply

1,000,000,000 PHUNKS

Holders

54

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
3,226,898.563233491123295012 PHUNKS

Value
$0.00
0x9463e5bc3504725a212f3ebd686cdbcca7a21ccc
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:
PhunksCapital

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-12-09
*/

/*

$PHUNKS // Phunks Capital
Fair Launch - No Team Tokens - Liquidity Locked Upon Launch

Telegram: https://t.me/phunkscapital

*/

// SPDX-License-Identifier: Unlicensed

pragma solidity ^0.6.12;

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

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

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

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

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

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

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

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

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

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

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

            return c;
        }

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

        /**
        * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
        * overflow (when the result is negative).
        *
        * Counterpart to Solidity's `-` operator.
        *
        * Requirements:
        *
        * - Subtraction cannot overflow.
        */
        function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
            require(b <= a, errorMessage);
            uint256 c = a - b;

            return c;
        }

        /**
        * @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) {
            // 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 0;
            }

            uint256 c = a * b;
            require(c / a == b, "SafeMath: multiplication overflow");

            return c;
        }

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

        /**
        * @dev Returns the integer division of two unsigned integers. Reverts 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) {
            require(b > 0, errorMessage);
            uint256 c = a / b;
            // assert(a == b * c + a % b); // There is no case in which this doesn't hold

            return c;
        }

        /**
        * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
        * Reverts 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 mod(a, b, "SafeMath: modulo by zero");
        }

        /**
        * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
        * Reverts with custom message 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, string memory errorMessage) internal pure returns (uint256) {
            require(b != 0, errorMessage);
            return a % b;
        }
    }

    library Address {
        /**
        * @dev Returns true if `account` is a contract.
        *
        * [IMPORTANT]
        * ====
        * It is unsafe to assume that an address for which this function returns
        * false is an externally-owned account (EOA) and not a contract.
        *
        * Among others, `isContract` will return false for the following
        * types of addresses:
        *
        *  - an externally-owned account
        *  - a contract in construction
        *  - an address where a contract will be created
        *  - an address where a contract lived, but was destroyed
        * ====
        */
        function isContract(address account) internal view returns (bool) {
            // According to EIP-1052, 0x0 is the value returned for not-yet created accounts
            // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
            // for accounts without code, i.e. `keccak256('')`
            bytes32 codehash;
            bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
            // solhint-disable-next-line no-inline-assembly
            assembly { codehash := extcodehash(account) }
            return (codehash != accountHash && codehash != 0x0);
        }

        /**
        * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
        * `recipient`, forwarding all available gas and reverting on errors.
        *
        * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
        * of certain opcodes, possibly making contracts go over the 2300 gas limit
        * imposed by `transfer`, making them unable to receive funds via
        * `transfer`. {sendValue} removes this limitation.
        *
        * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
        *
        * IMPORTANT: because control is transferred to `recipient`, care must be
        * taken to not create reentrancy vulnerabilities. Consider using
        * {ReentrancyGuard} or the
        * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
        */
        function sendValue(address payable recipient, uint256 amount) internal {
            require(address(this).balance >= amount, "Address: insufficient balance");

            // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
            (bool success, ) = recipient.call{ value: amount }("");
            require(success, "Address: unable to send value, recipient may have reverted");
        }

        /**
        * @dev Performs a Solidity function call using a low level `call`. A
        * plain`call` is an unsafe replacement for a function call: use this
        * function instead.
        *
        * If `target` reverts with a revert reason, it is bubbled up by this
        * function (like regular Solidity function calls).
        *
        * Returns the raw returned data. To convert to the expected return value,
        * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
        *
        * Requirements:
        *
        * - `target` must be a contract.
        * - calling `target` with `data` must not revert.
        *
        * _Available since v3.1._
        */
        function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
        }

        /**
        * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
        * `errorMessage` as a fallback revert reason when `target` reverts.
        *
        * _Available since v3.1._
        */
        function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
            return _functionCallWithValue(target, data, 0, errorMessage);
        }

        /**
        * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
        * but also transferring `value` wei to `target`.
        *
        * Requirements:
        *
        * - the calling contract must have an ETH balance of at least `value`.
        * - the called Solidity function must be `payable`.
        *
        * _Available since v3.1._
        */
        function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
            return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
        }

        /**
        * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
        * with `errorMessage` as a fallback revert reason when `target` reverts.
        *
        * _Available since v3.1._
        */
        function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
            require(address(this).balance >= value, "Address: insufficient balance for call");
            return _functionCallWithValue(target, data, value, errorMessage);
        }

        function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) {
            require(isContract(target), "Address: call to non-contract");

            // solhint-disable-next-line avoid-low-level-calls
            (bool success, bytes memory returndata) = target.call{ value: weiValue }(data);
            if (success) {
                return returndata;
            } else {
                // Look for revert reason and bubble it up if present
                if (returndata.length > 0) {
                    // The easiest way to bubble the revert reason is using memory via assembly

                    // solhint-disable-next-line no-inline-assembly
                    assembly {
                        let returndata_size := mload(returndata)
                        revert(add(32, returndata), returndata_size)
                    }
                } else {
                    revert(errorMessage);
                }
            }
        }
    }

    contract Ownable is Context {
        address private _owner;
        address private _previousOwner;
        uint256 private _lockTime;

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

        /**
        * @dev Initializes the contract setting the deployer as the initial owner.
        */
        constructor () internal {
            address msgSender = _msgSender();
            _owner = msgSender;
            emit OwnershipTransferred(address(0), msgSender);
        }

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

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

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

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

        function getUnlockTime() public view returns (uint256) {
            return _lockTime;
        }

    }

    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;
    }

    interface IUniswapV2Pair {
        event Approval(address indexed owner, address indexed spender, uint value);
        event Transfer(address indexed from, address indexed to, uint value);

        function name() external pure returns (string memory);
        function symbol() external pure returns (string memory);
        function decimals() external pure returns (uint8);
        function totalSupply() external view returns (uint);
        function balanceOf(address owner) external view returns (uint);
        function allowance(address owner, address spender) external view returns (uint);

        function approve(address spender, uint value) external returns (bool);
        function transfer(address to, uint value) external returns (bool);
        function transferFrom(address from, address to, uint value) external returns (bool);

        function DOMAIN_SEPARATOR() external view returns (bytes32);
        function PERMIT_TYPEHASH() external pure returns (bytes32);
        function nonces(address owner) external view returns (uint);

        function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external;

        event Mint(address indexed sender, uint amount0, uint amount1);
        event Burn(address indexed sender, uint amount0, uint amount1, address indexed to);
        event Swap(
            address indexed sender,
            uint amount0In,
            uint amount1In,
            uint amount0Out,
            uint amount1Out,
            address indexed to
        );
        event Sync(uint112 reserve0, uint112 reserve1);

        function MINIMUM_LIQUIDITY() external pure returns (uint);
        function factory() external view returns (address);
        function token0() external view returns (address);
        function token1() external view returns (address);
        function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
        function price0CumulativeLast() external view returns (uint);
        function price1CumulativeLast() external view returns (uint);
        function kLast() external view returns (uint);

        function mint(address to) external returns (uint liquidity);
        function burn(address to) external returns (uint amount0, uint amount1);
        function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
        function skim(address to) external;
        function sync() external;

        function initialize(address, address) external;
    }

    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);
    }

    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;
    }

    contract PhunksCapital is Context, IERC20, Ownable {
        using SafeMath for uint256;
        using Address for address;

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

        mapping (address => bool) private _isExcludedFromFee;

        mapping (address => bool) private _isExcluded;
        address[] private _excluded;
        mapping (address => bool) private _isBlackListedBot;
        address[] private _blackListedBots;

        uint256 private constant MAX = ~uint256(0);
        uint256 private constant _tTotal = 1000000000 * 10**18;
        uint256 private _rTotal = (MAX - (MAX % _tTotal));
        uint256 private _tFeeTotal;

        string private constant _name = 'Phunks Capital';
        string private constant _symbol = 'PHUNKS';
        uint8 private constant _decimals = 18;

        uint256 private _taxFee = 0;
        uint256 private _teamFee = 16;
        uint256 private _previousTaxFee = _taxFee;
        uint256 private _previousTeamFee = _teamFee;

        address payable public _devWalletAddress;
        address payable public _marketingWalletAddress;


        IUniswapV2Router02 public immutable uniswapV2Router;
        address public immutable uniswapV2Pair;

        bool inSwap = false;
        bool public swapEnabled = true;

        uint256 private _maxTxAmount = 50000000 * 10**18;
        uint256 private constant _numOfTokensToExchangeForTeam = 7000 * 10**18;
        uint256 private _maxWalletSize = 50000000 * 10**18;

        event botAddedToBlacklist(address account);
        event botRemovedFromBlacklist(address account);

        // event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap);
        // event SwapEnabledUpdated(bool enabled);

        modifier lockTheSwap {
            inSwap = true;
            _;
            inSwap = false;
        }

        constructor (address payable devWalletAddress, address payable marketingWalletAddress) public {
            _devWalletAddress = devWalletAddress;
            _marketingWalletAddress = marketingWalletAddress;

            _rOwned[_msgSender()] = _rTotal;

            IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
            // Create a uniswap pair for this new token
            uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
                .createPair(address(this), _uniswapV2Router.WETH());

            // set the rest of the contract variables
            uniswapV2Router = _uniswapV2Router;

            // Exclude owner and this contract from fee
            _isExcludedFromFee[owner()] = true;
            _isExcludedFromFee[address(this)] = true;

            emit Transfer(address(0), _msgSender(), _tTotal);
        }

        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 _tTotal;
        }

        function balanceOf(address account) public view override returns (uint256) {
            if (_isExcluded[account]) return _tOwned[account];
            return tokenFromReflection(_rOwned[account]);
        }

        function transfer(address recipient, uint256 amount) public override returns (bool) {
            _transfer(_msgSender(), recipient, amount);
            return true;
        }

        function allowance(address owner, address spender) public view override returns (uint256) {
            return _allowances[owner][spender];
        }

        function approve(address spender, uint256 amount) public override returns (bool) {
            _approve(_msgSender(), spender, amount);
            return true;
        }

        function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) {
            _transfer(sender, recipient, amount);
            _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
            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 isExcluded(address account) public view returns (bool) {
            return _isExcluded[account];
        }

        function setExcludeFromFee(address account, bool excluded) external onlyOwner() {
            _isExcludedFromFee[account] = excluded;
        }

        function totalFees() public view returns (uint256) {
            return _tFeeTotal;
        }

        function deliver(uint256 tAmount) public {
            address sender = _msgSender();
            require(!_isExcluded[sender], "Excluded addresses cannot call this function");
            (uint256 rAmount,,,,,) = _getValues(tAmount);
            _rOwned[sender] = _rOwned[sender].sub(rAmount);
            _rTotal = _rTotal.sub(rAmount);
            _tFeeTotal = _tFeeTotal.add(tAmount);
        }

        function reflectionFromToken(uint256 tAmount, bool deductTransferFee) public view returns(uint256) {
            require(tAmount <= _tTotal, "Amount must be less than supply");
            if (!deductTransferFee) {
                (uint256 rAmount,,,,,) = _getValues(tAmount);
                return rAmount;
            } else {
                (,uint256 rTransferAmount,,,,) = _getValues(tAmount);
                return rTransferAmount;
            }
        }

        function tokenFromReflection(uint256 rAmount) public view returns(uint256) {
            require(rAmount <= _rTotal, "Amount must be less than total reflections");
            uint256 currentRate =  _getRate();
            return rAmount.div(currentRate);
        }

        function addBotToBlacklist (address account) external onlyOwner() {
           require(account != 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, 'We cannot blacklist UniSwap router');
           require (!_isBlackListedBot[account], 'Account is already blacklisted');
           _isBlackListedBot[account] = true;
           _blackListedBots.push(account);
        }

        function removeBotFromBlacklist(address account) external onlyOwner() {
          require (_isBlackListedBot[account], 'Account is not blacklisted');
          for (uint256 i = 0; i < _blackListedBots.length; i++) {
                 if (_blackListedBots[i] == account) {
                     _blackListedBots[i] = _blackListedBots[_blackListedBots.length - 1];
                     _isBlackListedBot[account] = false;
                     _blackListedBots.pop();
                     break;
                 }
           }
       }

        function excludeAccount(address account) external onlyOwner() {
            require(account != 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, 'We can not exclude Uniswap router.');
            require(!_isExcluded[account], "Account is already excluded");
            if(_rOwned[account] > 0) {
                _tOwned[account] = tokenFromReflection(_rOwned[account]);
            }
            _isExcluded[account] = true;
            _excluded.push(account);
        }

        function includeAccount(address account) external onlyOwner() {
            require(_isExcluded[account], "Account is not excluded");
            for (uint256 i = 0; i < _excluded.length; i++) {
                if (_excluded[i] == account) {
                    _excluded[i] = _excluded[_excluded.length - 1];
                    _tOwned[account] = 0;
                    _isExcluded[account] = false;
                    _excluded.pop();
                    break;
                }
            }
        }

        function removeAllFee() private {
            if(_taxFee == 0 && _teamFee == 0) return;

            _previousTaxFee = _taxFee;
            _previousTeamFee = _teamFee;

            _taxFee = 0;
            _teamFee = 0;
        }

        function restoreAllFee() private {
            _taxFee = _previousTaxFee;
            _teamFee = _previousTeamFee;
        }

        function isExcludedFromFee(address account) public view returns(bool) {
            return _isExcludedFromFee[account];
        }

        function _approve(address owner, address spender, uint256 amount) private {
            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 _transfer(address sender, address recipient, uint256 amount) private {
            require(sender != address(0), "ERC20: transfer from the zero address");
            require(recipient != address(0), "ERC20: transfer to the zero address");
            require(amount > 0, "Transfer amount must be greater than zero");
            require(!_isBlackListedBot[sender], "You are blacklisted");
            require(!_isBlackListedBot[msg.sender], "You are blacklisted");
            require(!_isBlackListedBot[tx.origin], "You are blacklisted");
            if(sender != owner() && recipient != owner()) {
                require(amount <= _maxTxAmount, "Transfer amount exceeds the maxTxAmount.");
            }
            if(sender != owner() && recipient != owner() && recipient != uniswapV2Pair && recipient != address(0xdead)) {
                uint256 tokenBalanceRecipient = balanceOf(recipient);
                require(tokenBalanceRecipient + amount <= _maxWalletSize, "Recipient exceeds max wallet size.");
            }
            // is the token balance of this contract address over the min number of
            // tokens that we need to initiate a swap?
            // also, don't get caught in a circular team event.
            // also, don't swap if sender is uniswap pair.
            uint256 contractTokenBalance = balanceOf(address(this));

            if(contractTokenBalance >= _maxTxAmount)
            {
                contractTokenBalance = _maxTxAmount;
            }

            bool overMinTokenBalance = contractTokenBalance >= _numOfTokensToExchangeForTeam;
            if (!inSwap && swapEnabled && overMinTokenBalance && sender != uniswapV2Pair) {
                // Swap tokens for ETH and send to resepctive wallets
                swapTokensForEth(contractTokenBalance);

                uint256 contractETHBalance = address(this).balance;
                if(contractETHBalance > 0) {
                    sendETHToTeam(address(this).balance);
                }
            }

            //indicates if fee should be deducted from transfer
            bool takeFee = true;

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

            //transfer amount, it will take tax and team fee
            _tokenTransfer(sender,recipient,amount,takeFee);
        }

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

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

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

        function sendETHToTeam(uint256 amount) private {
            _devWalletAddress.transfer(amount.div(5));
            _marketingWalletAddress.transfer(amount.div(10).mul(8));
        }

        function manualSwap() external onlyOwner() {
            uint256 contractBalance = balanceOf(address(this));
            swapTokensForEth(contractBalance);
        }

        function manualSend() external onlyOwner() {
            uint256 contractETHBalance = address(this).balance;
            sendETHToTeam(contractETHBalance);
        }

        function setSwapEnabled(bool enabled) external onlyOwner(){
            swapEnabled = enabled;
        }

        function _tokenTransfer(address sender, address recipient, uint256 amount, bool takeFee) private {
            if(!takeFee)
                removeAllFee();

            if (_isExcluded[sender] && !_isExcluded[recipient]) {
                _transferFromExcluded(sender, recipient, amount);
            } else if (!_isExcluded[sender] && _isExcluded[recipient]) {
                _transferToExcluded(sender, recipient, amount);
            } else if (!_isExcluded[sender] && !_isExcluded[recipient]) {
                _transferStandard(sender, recipient, amount);
            } else if (_isExcluded[sender] && _isExcluded[recipient]) {
                _transferBothExcluded(sender, recipient, amount);
            } else {
                _transferStandard(sender, recipient, amount);
            }

            if(!takeFee)
                restoreAllFee();
        }

        function _transferStandard(address sender, address recipient, uint256 tAmount) private {
            (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tTeam) = _getValues(tAmount);
            _rOwned[sender] = _rOwned[sender].sub(rAmount);
            _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
            _takeTeam(tTeam);
            _reflectFee(rFee, tFee);
            emit Transfer(sender, recipient, tTransferAmount);
        }

        function _transferToExcluded(address sender, address recipient, uint256 tAmount) private {
            (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tTeam) = _getValues(tAmount);
            _rOwned[sender] = _rOwned[sender].sub(rAmount);
            _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
            _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
            _takeTeam(tTeam);
            _reflectFee(rFee, tFee);
            emit Transfer(sender, recipient, tTransferAmount);
        }

        function _transferFromExcluded(address sender, address recipient, uint256 tAmount) private {
            (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tTeam) = _getValues(tAmount);
            _tOwned[sender] = _tOwned[sender].sub(tAmount);
            _rOwned[sender] = _rOwned[sender].sub(rAmount);
            _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
            _takeTeam(tTeam);
            _reflectFee(rFee, tFee);
            emit Transfer(sender, recipient, tTransferAmount);
        }

        function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private {
            (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tTeam) = _getValues(tAmount);
            _tOwned[sender] = _tOwned[sender].sub(tAmount);
            _rOwned[sender] = _rOwned[sender].sub(rAmount);
            _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
            _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
            _takeTeam(tTeam);
            _reflectFee(rFee, tFee);
            emit Transfer(sender, recipient, tTransferAmount);
        }

        function _takeTeam(uint256 tTeam) private {
            uint256 currentRate =  _getRate();
            uint256 rTeam = tTeam.mul(currentRate);
            _rOwned[address(this)] = _rOwned[address(this)].add(rTeam);
            if(_isExcluded[address(this)])
                _tOwned[address(this)] = _tOwned[address(this)].add(tTeam);
        }

        function _reflectFee(uint256 rFee, uint256 tFee) private {
            _rTotal = _rTotal.sub(rFee);
            _tFeeTotal = _tFeeTotal.add(tFee);
        }

         //to recieve ETH from uniswapV2Router when swaping
        receive() external payable {}

        function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256, uint256) {
        (uint256 tTransferAmount, uint256 tFee, uint256 tTeam) = _getTValues(tAmount, _taxFee, _teamFee);
        uint256 currentRate = _getRate();
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, tTeam, currentRate);
        return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tTeam);
    }

        function _getTValues(uint256 tAmount, uint256 taxFee, uint256 teamFee) private pure returns (uint256, uint256, uint256) {
            uint256 tFee = tAmount.mul(taxFee).div(100);
            uint256 tTeam = tAmount.mul(teamFee).div(100);
            uint256 tTransferAmount = tAmount.sub(tFee).sub(tTeam);
            return (tTransferAmount, tFee, tTeam);
        }

        function _getRValues(uint256 tAmount, uint256 tFee, uint256 tTeam, uint256 currentRate) private pure returns (uint256, uint256, uint256) {
            uint256 rAmount = tAmount.mul(currentRate);
            uint256 rFee = tFee.mul(currentRate);
            uint256 rTeam = tTeam.mul(currentRate);
            uint256 rTransferAmount = rAmount.sub(rFee).sub(rTeam);
            return (rAmount, rTransferAmount, rFee);
        }

        function _getRate() private view returns(uint256) {
            (uint256 rSupply, uint256 tSupply) = _getCurrentSupply();
            return rSupply.div(tSupply);
        }

        function _getCurrentSupply() private view returns(uint256, uint256) {
            uint256 rSupply = _rTotal;
            uint256 tSupply = _tTotal;
            for (uint256 i = 0; i < _excluded.length; i++) {
                if (_rOwned[_excluded[i]] > rSupply || _tOwned[_excluded[i]] > tSupply) return (_rTotal, _tTotal);
                rSupply = rSupply.sub(_rOwned[_excluded[i]]);
                tSupply = tSupply.sub(_tOwned[_excluded[i]]);
            }
            if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal);
            return (rSupply, tSupply);
        }

        function _getTaxFee() public view returns(uint256) {
            return _taxFee;
        }

        function _getTeamFee() public view returns (uint256) {
          return _teamFee;
        }

        function _getMaxTxAmount() public view returns(uint256) {
            return _maxTxAmount;
        }

        function _getETHBalance() public view returns(uint256 balance) {
            return address(this).balance;
        }

        function _setTaxFee(uint256 taxFee) external onlyOwner() {
            require(taxFee >= 1 && taxFee <= 25, 'taxFee should be in 1 - 25');
            _taxFee = taxFee;
        }

        function _setTeamFee(uint256 teamFee) external onlyOwner() {
            require(teamFee >= 1 && teamFee <= 25, 'teamFee should be in 1 - 25');
            _teamFee = teamFee;
        }

        function _setDevWallet(address payable devWalletAddress) external onlyOwner() {
            _devWalletAddress = devWalletAddress;
        }

        function _setMarketingWallet(address payable marketingWalletAddress) external onlyOwner() {
            _marketingWalletAddress = marketingWalletAddress;
        }

        function _setMaxTxAmount(uint256 maxTxAmount) external onlyOwner() {
            _maxTxAmount = maxTxAmount;
        }

        function _setMaxWalletSize (uint256 maxWalletSize) external onlyOwner() {
          _maxWalletSize = maxWalletSize;
        }
    }

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address payable","name":"devWalletAddress","type":"address"},{"internalType":"address payable","name":"marketingWalletAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"botAddedToBlacklist","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"botRemovedFromBlacklist","type":"event"},{"inputs":[],"name":"_devWalletAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_getETHBalance","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_getMaxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_getTaxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_getTeamFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_marketingWalletAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"devWalletAddress","type":"address"}],"name":"_setDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"marketingWalletAddress","type":"address"}],"name":"_setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxAmount","type":"uint256"}],"name":"_setMaxTxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxWalletSize","type":"uint256"}],"name":"_setMaxWalletSize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxFee","type":"uint256"}],"name":"_setTaxFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"teamFee","type":"uint256"}],"name":"_setTeamFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addBotToBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"uint256","name":"tAmount","type":"uint256"}],"name":"deliver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getUnlockTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcluded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualSend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"manualSwap","outputs":[],"stateMutability":"nonpayable","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":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeBotFromBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"setExcludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"setSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526b033b2e3c9fd0803ce8000000600019816200001c57fe5b0660001903600b556000600d556010600e55600d54600f55600e546010556000601260146101000a81548160ff0219169083151502179055506001601260156101000a81548160ff0219169083151502179055506a295be96e640669720000006013556a295be96e640669720000006014553480156200009b57600080fd5b50604051620060593803806200605983398181016040526040811015620000c157600080fd5b8101908080519060200190929190805190602001909291905050506000620000ee620005fd60201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35081601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600b546003600062000225620005fd60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015620002c357600080fd5b505afa158015620002d8573d6000803e3d6000fd5b505050506040513d6020811015620002ef57600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200036357600080fd5b505afa15801562000378573d6000803e3d6000fd5b505050506040513d60208110156200038f57600080fd5b81019080805190602001909291905050506040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff16815260200192505050602060405180830381600087803b1580156200040a57600080fd5b505af11580156200041f573d6000803e3d6000fd5b505050506040513d60208110156200043657600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1660601b815250508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1660601b81525050600160066000620004ca6200060560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600660003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555062000583620005fd60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6b033b2e3c9fd0803ce80000006040518082815260200191505060405180910390a35050506200062e565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60805160601c60a05160601c6159e86200067160003980611bb15280613a985280613bfb5250806110cb52806140575280614143528061416a52506159e86000f3fe60806040526004361061026b5760003560e01c8063602bc62b11610144578063b030b34a116100b6578063f2cc0c181161007a578063f2cc0c1814610df8578063f2fde38b14610e49578063f429389014610e9a578063f7a9159114610eb1578063f815a84214610edc578063f84354f114610f0757610272565b8063b030b34a14610c3d578063b425bac314610c8e578063cba0e99614610ccf578063dd62ed3e14610d36578063e01af92c14610dbb57610272565b806395d89b411161010857806395d89b4114610a085780639e6c752914610a98578063a457c2d714610ad3578063a5e8c95414610b44578063a9059cbb14610b6f578063af9549e014610be057610272565b8063602bc62b146108f35780636ddd17131461091e57806370a082311461094b578063715018a6146109b05780638da5cb5b146109c757610272565b80632d838119116101dd5780634144d9e4116101a15780634144d9e41461075d5780634549b0391461079e57806349bd5a5e146107f957806351bc3c851461083a5780635342acb4146108515780635880b873146108b857610272565b80632d838119146106095780632fbff03014610658578063313ce5671461068357806339509351146106b15780633bd5d1731461072257610272565b806318160ddd1161022f57806318160ddd146104355780631bbae6e0146104605780631d7ef8791461049b5780631ff53b60146104ec57806323b872dd1461053d57806328667162146105ce57610272565b806306fdde0314610277578063095ea7b3146103075780630a1f8ea81461037857806313114a9d146103c95780631694505e146103f457610272565b3661027257005b600080fd5b34801561028357600080fd5b5061028c610f58565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102cc5780820151818401526020810190506102b1565b50505050905090810190601f1680156102f95780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561031357600080fd5b506103606004803603604081101561032a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610f95565b60405180821515815260200191505060405180910390f35b34801561038457600080fd5b506103c76004803603602081101561039b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610fb3565b005b3480156103d557600080fd5b506103de6110bf565b6040518082815260200191505060405180910390f35b34801561040057600080fd5b506104096110c9565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561044157600080fd5b5061044a6110ed565b6040518082815260200191505060405180910390f35b34801561046c57600080fd5b506104996004803603602081101561048357600080fd5b8101908080359060200190929190505050611101565b005b3480156104a757600080fd5b506104ea600480360360208110156104be57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506111d3565b005b3480156104f857600080fd5b5061053b6004803603602081101561050f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506114b2565b005b34801561054957600080fd5b506105b66004803603606081101561056057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506115be565b60405180821515815260200191505060405180910390f35b3480156105da57600080fd5b50610607600480360360208110156105f157600080fd5b8101908080359060200190929190505050611697565b005b34801561061557600080fd5b506106426004803603602081101561062c57600080fd5b81019080803590602001909291905050506117ed565b6040518082815260200191505060405180910390f35b34801561066457600080fd5b5061066d611871565b6040518082815260200191505060405180910390f35b34801561068f57600080fd5b5061069861187b565b604051808260ff16815260200191505060405180910390f35b3480156106bd57600080fd5b5061070a600480360360408110156106d457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611884565b60405180821515815260200191505060405180910390f35b34801561072e57600080fd5b5061075b6004803603602081101561074557600080fd5b8101908080359060200190929190505050611937565b005b34801561076957600080fd5b50610772611ac8565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156107aa57600080fd5b506107e3600480360360408110156107c157600080fd5b8101908080359060200190929190803515159060200190929190505050611aee565b6040518082815260200191505060405180910390f35b34801561080557600080fd5b5061080e611baf565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561084657600080fd5b5061084f611bd3565b005b34801561085d57600080fd5b506108a06004803603602081101561087457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611cb4565b60405180821515815260200191505060405180910390f35b3480156108c457600080fd5b506108f1600480360360208110156108db57600080fd5b8101908080359060200190929190505050611d0a565b005b3480156108ff57600080fd5b50610908611e60565b6040518082815260200191505060405180910390f35b34801561092a57600080fd5b50610933611e6a565b60405180821515815260200191505060405180910390f35b34801561095757600080fd5b5061099a6004803603602081101561096e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611e7d565b6040518082815260200191505060405180910390f35b3480156109bc57600080fd5b506109c5611f68565b005b3480156109d357600080fd5b506109dc6120ee565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610a1457600080fd5b50610a1d612117565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610a5d578082015181840152602081019050610a42565b50505050905090810190601f168015610a8a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610aa457600080fd5b50610ad160048036036020811015610abb57600080fd5b8101908080359060200190929190505050612154565b005b348015610adf57600080fd5b50610b2c60048036036040811015610af657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612226565b60405180821515815260200191505060405180910390f35b348015610b5057600080fd5b50610b596122f3565b6040518082815260200191505060405180910390f35b348015610b7b57600080fd5b50610bc860048036036040811015610b9257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506122fd565b60405180821515815260200191505060405180910390f35b348015610bec57600080fd5b50610c3b60048036036040811015610c0357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080351515906020019092919050505061231b565b005b348015610c4957600080fd5b50610c8c60048036036020811015610c6057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061243e565b005b348015610c9a57600080fd5b50610ca3612783565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610cdb57600080fd5b50610d1e60048036036020811015610cf257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506127a9565b60405180821515815260200191505060405180910390f35b348015610d4257600080fd5b50610da560048036036040811015610d5957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506127ff565b6040518082815260200191505060405180910390f35b348015610dc757600080fd5b50610df660048036036020811015610dde57600080fd5b81019080803515159060200190929190505050612886565b005b348015610e0457600080fd5b50610e4760048036036020811015610e1b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061296b565b005b348015610e5557600080fd5b50610e9860048036036020811015610e6c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612d1e565b005b348015610ea657600080fd5b50610eaf612f29565b005b348015610ebd57600080fd5b50610ec6613002565b6040518082815260200191505060405180910390f35b348015610ee857600080fd5b50610ef161300c565b6040518082815260200191505060405180910390f35b348015610f1357600080fd5b50610f5660048036036020811015610f2a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613014565b005b60606040518060400160405280600e81526020017f5068756e6b73204361706974616c000000000000000000000000000000000000815250905090565b6000610fa9610fa261339e565b84846133a6565b6001905092915050565b610fbb61339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461107b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600c54905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b60006b033b2e3c9fd0803ce8000000905090565b61110961339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146111c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060138190555050565b6111db61339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461129b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611334576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806158846022913960400191505060405180910390fd5b600960008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156113f4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f4163636f756e7420697320616c726561647920626c61636b6c6973746564000081525060200191505060405180910390fd5b6001600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600a819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6114ba61339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461157a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60006115cb84848461359d565b61168c846115d761339e565b611687856040518060600160405280602881526020016158a660289139600560008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061163d61339e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613d379092919063ffffffff16565b6133a6565b600190509392505050565b61169f61339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461175f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60018110158015611771575060198111155b6117e3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f7465616d4665652073686f756c6420626520696e2031202d203235000000000081525060200191505060405180910390fd5b80600e8190555050565b6000600b5482111561184a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806157a7602a913960400191505060405180910390fd5b6000611854613df7565b90506118698184613e2290919063ffffffff16565b915050919050565b6000600d54905090565b60006012905090565b600061192d61189161339e565b8461192885600560006118a261339e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613e6c90919063ffffffff16565b6133a6565b6001905092915050565b600061194161339e565b9050600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156119e6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180615962602c913960400191505060405180910390fd5b60006119f183613ef4565b50505050509050611a4a81600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613f5c90919063ffffffff16565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611aa281600b54613f5c90919063ffffffff16565b600b81905550611abd83600c54613e6c90919063ffffffff16565b600c81905550505050565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006b033b2e3c9fd0803ce8000000831115611b72576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f416d6f756e74206d757374206265206c657373207468616e20737570706c790081525060200191505060405180910390fd5b81611b92576000611b8284613ef4565b5050505050905080915050611ba9565b6000611b9d84613ef4565b50505050915050809150505b92915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b611bdb61339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611c9b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000611ca630611e7d565b9050611cb181613fa6565b50565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b611d1261339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611dd2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60018110158015611de4575060198111155b611e56576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f7461784665652073686f756c6420626520696e2031202d20323500000000000081525060200191505060405180910390fd5b80600d8190555050565b6000600254905090565b601260159054906101000a900460ff1681565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611f1857600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050611f63565b611f60600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117ed565b90505b919050565b611f7061339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612030576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606040518060400160405280600681526020017f5048554e4b530000000000000000000000000000000000000000000000000000815250905090565b61215c61339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461221c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060148190555050565b60006122e961223361339e565b846122e48560405180606001604052806025815260200161598e602591396005600061225d61339e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613d379092919063ffffffff16565b6133a6565b6001905092915050565b6000600e54905090565b600061231161230a61339e565b848461359d565b6001905092915050565b61232361339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146123e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b61244661339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612506576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600960008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166125c5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f4163636f756e74206973206e6f7420626c61636b6c697374656400000000000081525060200191505060405180910390fd5b60005b600a8054905081101561277f578173ffffffffffffffffffffffffffffffffffffffff16600a82815481106125f957fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561277257600a6001600a80549050038154811061265557fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600a828154811061268d57fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600a80548061273857fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055905561277f565b80806001019150506125c8565b5050565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61288e61339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461294e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601260156101000a81548160ff02191690831515021790555050565b61297361339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612a33576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612acc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806159406022913960400191505060405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612b8c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115612c6057612c1c600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117ed565b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506008819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b612d2661339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612de6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612e6c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806157d16026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b612f3161339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612ff1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000479050612fff8161428a565b50565b6000601354905090565b600047905090565b61301c61339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146130dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661319b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f4163636f756e74206973206e6f74206578636c7564656400000000000000000081525060200191505060405180910390fd5b60005b60088054905081101561339a578173ffffffffffffffffffffffffffffffffffffffff16600882815481106131cf57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561338d5760086001600880549050038154811061322b57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166008828154811061326357fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600880548061335357fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055905561339a565b808060010191505061319e565b5050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561342c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061591c6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156134b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806157f76022913960400191505060405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613623576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806158f76025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156136a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806157846023913960400191505060405180910390fd5b60008111613702576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806158ce6029913960400191505060405180910390fd5b600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156137c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f596f752061726520626c61636b6c69737465640000000000000000000000000081525060200191505060405180910390fd5b600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615613882576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f596f752061726520626c61636b6c69737465640000000000000000000000000081525060200191505060405180910390fd5b600960003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615613942576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f596f752061726520626c61636b6c69737465640000000000000000000000000081525060200191505060405180910390fd5b61394a6120ee565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156139b857506139886120ee565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15613a1957601354811115613a18576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602881526020018061583b6028913960400191505060405180910390fd5b5b613a216120ee565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015613a8f5750613a5f6120ee565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015613ae757507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015613b21575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15613b92576000613b3183611e7d565b90506014548282011115613b90576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806158196022913960400191505060405180910390fd5b505b6000613b9d30611e7d565b90506013548110613bae5760135490505b600069017b7883c069166000008210159050601260149054906101000a900460ff16158015613be95750601260159054906101000a900460ff165b8015613bf25750805b8015613c4a57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b15613c7257613c5882613fa6565b60004790506000811115613c7057613c6f4761428a565b5b505b600060019050600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680613d195750600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15613d2357600090505b613d2f86868684614398565b505050505050565b6000838311158290613de4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613da9578082015181840152602081019050613d8e565b50505050905090810190601f168015613dd65780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6000806000613e046146a9565b91509150613e1b8183613e2290919063ffffffff16565b9250505090565b6000613e6483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250614962565b905092915050565b600080828401905083811015613eea576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6000806000806000806000806000613f118a600d54600e54614a28565b9250925092506000613f21613df7565b90506000806000613f348e878787614abe565b9250925092508282828989899c509c509c509c509c509c505050505050505091939550919395565b6000613f9e83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613d37565b905092915050565b6001601260146101000a81548160ff0219169083151502179055506060600267ffffffffffffffff81118015613fdb57600080fd5b5060405190808252806020026020018201604052801561400a5781602001602082028036833780820191505090505b509050308160008151811061401b57fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156140bb57600080fd5b505afa1580156140cf573d6000803e3d6000fd5b505050506040513d60208110156140e557600080fd5b81019080805190602001909291905050508160018151811061410357fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050614168307f0000000000000000000000000000000000000000000000000000000000000000846133a6565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040180868152602001858152602001806020018473ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b8381101561422a57808201518184015260208101905061420f565b505050509050019650505050505050600060405180830381600087803b15801561425357600080fd5b505af1158015614267573d6000803e3d6000fd5b50505050506000601260146101000a81548160ff02191690831515021790555050565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6142da600584613e2290919063ffffffff16565b9081150290604051600060405180830381858888f19350505050158015614305573d6000803e3d6000fd5b50601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc614369600861435b600a86613e2290919063ffffffff16565b614b4790919063ffffffff16565b9081150290604051600060405180830381858888f19350505050158015614394573d6000803e3d6000fd5b5050565b806143a6576143a5614bcd565b5b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156144495750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561445e57614459848484614c10565b614695565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156145015750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561451657614511848484614e70565b614694565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156145ba5750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156145cf576145ca8484846150d0565b614693565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156146715750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156146865761468184848461529b565b614692565b6146918484846150d0565b5b5b5b5b806146a3576146a2615590565b5b50505050565b6000806000600b54905060006b033b2e3c9fd0803ce8000000905060005b600880549050811015614911578260036000600884815481106146e657fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411806147cd575081600460006008848154811061476557fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b156147ee57600b546b033b2e3c9fd0803ce80000009450945050505061495e565b614877600360006008848154811061480257fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205484613f5c90919063ffffffff16565b9250614902600460006008848154811061488d57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205483613f5c90919063ffffffff16565b915080806001019150506146c7565b506149336b033b2e3c9fd0803ce8000000600b54613e2290919063ffffffff16565b82101561495557600b546b033b2e3c9fd0803ce800000093509350505061495e565b81819350935050505b9091565b60008083118290614a0e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156149d35780820151818401526020810190506149b8565b50505050905090810190601f168015614a005780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581614a1a57fe5b049050809150509392505050565b600080600080614a546064614a46888a614b4790919063ffffffff16565b613e2290919063ffffffff16565b90506000614a7e6064614a70888b614b4790919063ffffffff16565b613e2290919063ffffffff16565b90506000614aa782614a99858c613f5c90919063ffffffff16565b613f5c90919063ffffffff16565b905080838395509550955050505093509350939050565b600080600080614ad78589614b4790919063ffffffff16565b90506000614aee8689614b4790919063ffffffff16565b90506000614b058789614b4790919063ffffffff16565b90506000614b2e82614b208587613f5c90919063ffffffff16565b613f5c90919063ffffffff16565b9050838184965096509650505050509450945094915050565b600080831415614b5a5760009050614bc7565b6000828402905082848281614b6b57fe5b0414614bc2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806158636021913960400191505060405180910390fd5b809150505b92915050565b6000600d54148015614be157506000600e54145b15614beb57614c0e565b600d54600f81905550600e546010819055506000600d819055506000600e819055505b565b600080600080600080614c2287613ef4565b955095509550955095509550614c8087600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613f5c90919063ffffffff16565b600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614d1586600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613f5c90919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614daa85600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613e6c90919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614df6816155a4565b614e008483615749565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600080600080600080614e8287613ef4565b955095509550955095509550614ee086600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613f5c90919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614f7583600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613e6c90919063ffffffff16565b600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061500a85600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613e6c90919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550615056816155a4565b6150608483615749565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b6000806000806000806150e287613ef4565b95509550955095509550955061514086600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613f5c90919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506151d585600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613e6c90919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550615221816155a4565b61522b8483615749565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b6000806000806000806152ad87613ef4565b95509550955095509550955061530b87600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613f5c90919063ffffffff16565b600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506153a086600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613f5c90919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061543583600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613e6c90919063ffffffff16565b600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506154ca85600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613e6c90919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550615516816155a4565b6155208483615749565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600f54600d81905550601054600e81905550565b60006155ae613df7565b905060006155c58284614b4790919063ffffffff16565b905061561981600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613e6c90919063ffffffff16565b600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600760003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156157445761570083600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613e6c90919063ffffffff16565b600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050565b61575e82600b54613f5c90919063ffffffff16565b600b8190555061577981600c54613e6c90919063ffffffff16565b600c81905550505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373526563697069656e742065786365656473206d61782077616c6c65742073697a652e5472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7757652063616e6e6f7420626c61636b6c69737420556e695377617020726f7574657245524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737357652063616e206e6f74206578636c75646520556e697377617020726f757465722e4578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220c193f7cbf05f69ce74d0bb46705c77ccbe647e9e7b0889b967e8809e0ce8eca864736f6c634300060c0033000000000000000000000000d310e568c4be68ec133bf64f4bb0000fb244f237000000000000000000000000d310e568c4be68ec133bf64f4bb0000fb244f237

Deployed Bytecode

0x60806040526004361061026b5760003560e01c8063602bc62b11610144578063b030b34a116100b6578063f2cc0c181161007a578063f2cc0c1814610df8578063f2fde38b14610e49578063f429389014610e9a578063f7a9159114610eb1578063f815a84214610edc578063f84354f114610f0757610272565b8063b030b34a14610c3d578063b425bac314610c8e578063cba0e99614610ccf578063dd62ed3e14610d36578063e01af92c14610dbb57610272565b806395d89b411161010857806395d89b4114610a085780639e6c752914610a98578063a457c2d714610ad3578063a5e8c95414610b44578063a9059cbb14610b6f578063af9549e014610be057610272565b8063602bc62b146108f35780636ddd17131461091e57806370a082311461094b578063715018a6146109b05780638da5cb5b146109c757610272565b80632d838119116101dd5780634144d9e4116101a15780634144d9e41461075d5780634549b0391461079e57806349bd5a5e146107f957806351bc3c851461083a5780635342acb4146108515780635880b873146108b857610272565b80632d838119146106095780632fbff03014610658578063313ce5671461068357806339509351146106b15780633bd5d1731461072257610272565b806318160ddd1161022f57806318160ddd146104355780631bbae6e0146104605780631d7ef8791461049b5780631ff53b60146104ec57806323b872dd1461053d57806328667162146105ce57610272565b806306fdde0314610277578063095ea7b3146103075780630a1f8ea81461037857806313114a9d146103c95780631694505e146103f457610272565b3661027257005b600080fd5b34801561028357600080fd5b5061028c610f58565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102cc5780820151818401526020810190506102b1565b50505050905090810190601f1680156102f95780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561031357600080fd5b506103606004803603604081101561032a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610f95565b60405180821515815260200191505060405180910390f35b34801561038457600080fd5b506103c76004803603602081101561039b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610fb3565b005b3480156103d557600080fd5b506103de6110bf565b6040518082815260200191505060405180910390f35b34801561040057600080fd5b506104096110c9565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561044157600080fd5b5061044a6110ed565b6040518082815260200191505060405180910390f35b34801561046c57600080fd5b506104996004803603602081101561048357600080fd5b8101908080359060200190929190505050611101565b005b3480156104a757600080fd5b506104ea600480360360208110156104be57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506111d3565b005b3480156104f857600080fd5b5061053b6004803603602081101561050f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506114b2565b005b34801561054957600080fd5b506105b66004803603606081101561056057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506115be565b60405180821515815260200191505060405180910390f35b3480156105da57600080fd5b50610607600480360360208110156105f157600080fd5b8101908080359060200190929190505050611697565b005b34801561061557600080fd5b506106426004803603602081101561062c57600080fd5b81019080803590602001909291905050506117ed565b6040518082815260200191505060405180910390f35b34801561066457600080fd5b5061066d611871565b6040518082815260200191505060405180910390f35b34801561068f57600080fd5b5061069861187b565b604051808260ff16815260200191505060405180910390f35b3480156106bd57600080fd5b5061070a600480360360408110156106d457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611884565b60405180821515815260200191505060405180910390f35b34801561072e57600080fd5b5061075b6004803603602081101561074557600080fd5b8101908080359060200190929190505050611937565b005b34801561076957600080fd5b50610772611ac8565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156107aa57600080fd5b506107e3600480360360408110156107c157600080fd5b8101908080359060200190929190803515159060200190929190505050611aee565b6040518082815260200191505060405180910390f35b34801561080557600080fd5b5061080e611baf565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561084657600080fd5b5061084f611bd3565b005b34801561085d57600080fd5b506108a06004803603602081101561087457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611cb4565b60405180821515815260200191505060405180910390f35b3480156108c457600080fd5b506108f1600480360360208110156108db57600080fd5b8101908080359060200190929190505050611d0a565b005b3480156108ff57600080fd5b50610908611e60565b6040518082815260200191505060405180910390f35b34801561092a57600080fd5b50610933611e6a565b60405180821515815260200191505060405180910390f35b34801561095757600080fd5b5061099a6004803603602081101561096e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611e7d565b6040518082815260200191505060405180910390f35b3480156109bc57600080fd5b506109c5611f68565b005b3480156109d357600080fd5b506109dc6120ee565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610a1457600080fd5b50610a1d612117565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610a5d578082015181840152602081019050610a42565b50505050905090810190601f168015610a8a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610aa457600080fd5b50610ad160048036036020811015610abb57600080fd5b8101908080359060200190929190505050612154565b005b348015610adf57600080fd5b50610b2c60048036036040811015610af657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612226565b60405180821515815260200191505060405180910390f35b348015610b5057600080fd5b50610b596122f3565b6040518082815260200191505060405180910390f35b348015610b7b57600080fd5b50610bc860048036036040811015610b9257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506122fd565b60405180821515815260200191505060405180910390f35b348015610bec57600080fd5b50610c3b60048036036040811015610c0357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080351515906020019092919050505061231b565b005b348015610c4957600080fd5b50610c8c60048036036020811015610c6057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061243e565b005b348015610c9a57600080fd5b50610ca3612783565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610cdb57600080fd5b50610d1e60048036036020811015610cf257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506127a9565b60405180821515815260200191505060405180910390f35b348015610d4257600080fd5b50610da560048036036040811015610d5957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506127ff565b6040518082815260200191505060405180910390f35b348015610dc757600080fd5b50610df660048036036020811015610dde57600080fd5b81019080803515159060200190929190505050612886565b005b348015610e0457600080fd5b50610e4760048036036020811015610e1b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061296b565b005b348015610e5557600080fd5b50610e9860048036036020811015610e6c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612d1e565b005b348015610ea657600080fd5b50610eaf612f29565b005b348015610ebd57600080fd5b50610ec6613002565b6040518082815260200191505060405180910390f35b348015610ee857600080fd5b50610ef161300c565b6040518082815260200191505060405180910390f35b348015610f1357600080fd5b50610f5660048036036020811015610f2a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613014565b005b60606040518060400160405280600e81526020017f5068756e6b73204361706974616c000000000000000000000000000000000000815250905090565b6000610fa9610fa261339e565b84846133a6565b6001905092915050565b610fbb61339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461107b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600c54905090565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b60006b033b2e3c9fd0803ce8000000905090565b61110961339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146111c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060138190555050565b6111db61339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461129b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611334576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806158846022913960400191505060405180910390fd5b600960008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156113f4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f4163636f756e7420697320616c726561647920626c61636b6c6973746564000081525060200191505060405180910390fd5b6001600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600a819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6114ba61339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461157a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60006115cb84848461359d565b61168c846115d761339e565b611687856040518060600160405280602881526020016158a660289139600560008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061163d61339e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613d379092919063ffffffff16565b6133a6565b600190509392505050565b61169f61339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461175f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60018110158015611771575060198111155b6117e3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f7465616d4665652073686f756c6420626520696e2031202d203235000000000081525060200191505060405180910390fd5b80600e8190555050565b6000600b5482111561184a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806157a7602a913960400191505060405180910390fd5b6000611854613df7565b90506118698184613e2290919063ffffffff16565b915050919050565b6000600d54905090565b60006012905090565b600061192d61189161339e565b8461192885600560006118a261339e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613e6c90919063ffffffff16565b6133a6565b6001905092915050565b600061194161339e565b9050600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156119e6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180615962602c913960400191505060405180910390fd5b60006119f183613ef4565b50505050509050611a4a81600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613f5c90919063ffffffff16565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611aa281600b54613f5c90919063ffffffff16565b600b81905550611abd83600c54613e6c90919063ffffffff16565b600c81905550505050565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006b033b2e3c9fd0803ce8000000831115611b72576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f416d6f756e74206d757374206265206c657373207468616e20737570706c790081525060200191505060405180910390fd5b81611b92576000611b8284613ef4565b5050505050905080915050611ba9565b6000611b9d84613ef4565b50505050915050809150505b92915050565b7f00000000000000000000000083135f43f85eaa5d7ccd899d8831f7763667bece81565b611bdb61339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611c9b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000611ca630611e7d565b9050611cb181613fa6565b50565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b611d1261339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611dd2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60018110158015611de4575060198111155b611e56576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f7461784665652073686f756c6420626520696e2031202d20323500000000000081525060200191505060405180910390fd5b80600d8190555050565b6000600254905090565b601260159054906101000a900460ff1681565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611f1857600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050611f63565b611f60600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117ed565b90505b919050565b611f7061339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612030576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606040518060400160405280600681526020017f5048554e4b530000000000000000000000000000000000000000000000000000815250905090565b61215c61339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461221c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060148190555050565b60006122e961223361339e565b846122e48560405180606001604052806025815260200161598e602591396005600061225d61339e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613d379092919063ffffffff16565b6133a6565b6001905092915050565b6000600e54905090565b600061231161230a61339e565b848461359d565b6001905092915050565b61232361339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146123e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b61244661339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612506576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600960008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166125c5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f4163636f756e74206973206e6f7420626c61636b6c697374656400000000000081525060200191505060405180910390fd5b60005b600a8054905081101561277f578173ffffffffffffffffffffffffffffffffffffffff16600a82815481106125f957fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561277257600a6001600a80549050038154811061265557fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600a828154811061268d57fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600a80548061273857fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055905561277f565b80806001019150506125c8565b5050565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61288e61339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461294e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601260156101000a81548160ff02191690831515021790555050565b61297361339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612a33576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612acc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806159406022913960400191505060405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612b8c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115612c6057612c1c600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117ed565b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506008819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b612d2661339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612de6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612e6c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806157d16026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b612f3161339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612ff1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000479050612fff8161428a565b50565b6000601354905090565b600047905090565b61301c61339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146130dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661319b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f4163636f756e74206973206e6f74206578636c7564656400000000000000000081525060200191505060405180910390fd5b60005b60088054905081101561339a578173ffffffffffffffffffffffffffffffffffffffff16600882815481106131cf57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561338d5760086001600880549050038154811061322b57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166008828154811061326357fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600880548061335357fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055905561339a565b808060010191505061319e565b5050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561342c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061591c6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156134b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806157f76022913960400191505060405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613623576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806158f76025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156136a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806157846023913960400191505060405180910390fd5b60008111613702576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806158ce6029913960400191505060405180910390fd5b600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156137c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f596f752061726520626c61636b6c69737465640000000000000000000000000081525060200191505060405180910390fd5b600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615613882576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f596f752061726520626c61636b6c69737465640000000000000000000000000081525060200191505060405180910390fd5b600960003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615613942576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f596f752061726520626c61636b6c69737465640000000000000000000000000081525060200191505060405180910390fd5b61394a6120ee565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156139b857506139886120ee565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15613a1957601354811115613a18576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602881526020018061583b6028913960400191505060405180910390fd5b5b613a216120ee565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015613a8f5750613a5f6120ee565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015613ae757507f00000000000000000000000083135f43f85eaa5d7ccd899d8831f7763667bece73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015613b21575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15613b92576000613b3183611e7d565b90506014548282011115613b90576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806158196022913960400191505060405180910390fd5b505b6000613b9d30611e7d565b90506013548110613bae5760135490505b600069017b7883c069166000008210159050601260149054906101000a900460ff16158015613be95750601260159054906101000a900460ff165b8015613bf25750805b8015613c4a57507f00000000000000000000000083135f43f85eaa5d7ccd899d8831f7763667bece73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b15613c7257613c5882613fa6565b60004790506000811115613c7057613c6f4761428a565b5b505b600060019050600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680613d195750600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15613d2357600090505b613d2f86868684614398565b505050505050565b6000838311158290613de4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613da9578082015181840152602081019050613d8e565b50505050905090810190601f168015613dd65780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6000806000613e046146a9565b91509150613e1b8183613e2290919063ffffffff16565b9250505090565b6000613e6483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250614962565b905092915050565b600080828401905083811015613eea576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6000806000806000806000806000613f118a600d54600e54614a28565b9250925092506000613f21613df7565b90506000806000613f348e878787614abe565b9250925092508282828989899c509c509c509c509c509c505050505050505091939550919395565b6000613f9e83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613d37565b905092915050565b6001601260146101000a81548160ff0219169083151502179055506060600267ffffffffffffffff81118015613fdb57600080fd5b5060405190808252806020026020018201604052801561400a5781602001602082028036833780820191505090505b509050308160008151811061401b57fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156140bb57600080fd5b505afa1580156140cf573d6000803e3d6000fd5b505050506040513d60208110156140e557600080fd5b81019080805190602001909291905050508160018151811061410357fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050614168307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846133a6565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040180868152602001858152602001806020018473ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b8381101561422a57808201518184015260208101905061420f565b505050509050019650505050505050600060405180830381600087803b15801561425357600080fd5b505af1158015614267573d6000803e3d6000fd5b50505050506000601260146101000a81548160ff02191690831515021790555050565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6142da600584613e2290919063ffffffff16565b9081150290604051600060405180830381858888f19350505050158015614305573d6000803e3d6000fd5b50601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc614369600861435b600a86613e2290919063ffffffff16565b614b4790919063ffffffff16565b9081150290604051600060405180830381858888f19350505050158015614394573d6000803e3d6000fd5b5050565b806143a6576143a5614bcd565b5b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156144495750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561445e57614459848484614c10565b614695565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156145015750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561451657614511848484614e70565b614694565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156145ba5750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156145cf576145ca8484846150d0565b614693565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156146715750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156146865761468184848461529b565b614692565b6146918484846150d0565b5b5b5b5b806146a3576146a2615590565b5b50505050565b6000806000600b54905060006b033b2e3c9fd0803ce8000000905060005b600880549050811015614911578260036000600884815481106146e657fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411806147cd575081600460006008848154811061476557fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b156147ee57600b546b033b2e3c9fd0803ce80000009450945050505061495e565b614877600360006008848154811061480257fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205484613f5c90919063ffffffff16565b9250614902600460006008848154811061488d57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205483613f5c90919063ffffffff16565b915080806001019150506146c7565b506149336b033b2e3c9fd0803ce8000000600b54613e2290919063ffffffff16565b82101561495557600b546b033b2e3c9fd0803ce800000093509350505061495e565b81819350935050505b9091565b60008083118290614a0e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156149d35780820151818401526020810190506149b8565b50505050905090810190601f168015614a005780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581614a1a57fe5b049050809150509392505050565b600080600080614a546064614a46888a614b4790919063ffffffff16565b613e2290919063ffffffff16565b90506000614a7e6064614a70888b614b4790919063ffffffff16565b613e2290919063ffffffff16565b90506000614aa782614a99858c613f5c90919063ffffffff16565b613f5c90919063ffffffff16565b905080838395509550955050505093509350939050565b600080600080614ad78589614b4790919063ffffffff16565b90506000614aee8689614b4790919063ffffffff16565b90506000614b058789614b4790919063ffffffff16565b90506000614b2e82614b208587613f5c90919063ffffffff16565b613f5c90919063ffffffff16565b9050838184965096509650505050509450945094915050565b600080831415614b5a5760009050614bc7565b6000828402905082848281614b6b57fe5b0414614bc2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806158636021913960400191505060405180910390fd5b809150505b92915050565b6000600d54148015614be157506000600e54145b15614beb57614c0e565b600d54600f81905550600e546010819055506000600d819055506000600e819055505b565b600080600080600080614c2287613ef4565b955095509550955095509550614c8087600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613f5c90919063ffffffff16565b600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614d1586600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613f5c90919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614daa85600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613e6c90919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614df6816155a4565b614e008483615749565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600080600080600080614e8287613ef4565b955095509550955095509550614ee086600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613f5c90919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614f7583600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613e6c90919063ffffffff16565b600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061500a85600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613e6c90919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550615056816155a4565b6150608483615749565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b6000806000806000806150e287613ef4565b95509550955095509550955061514086600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613f5c90919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506151d585600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613e6c90919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550615221816155a4565b61522b8483615749565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b6000806000806000806152ad87613ef4565b95509550955095509550955061530b87600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613f5c90919063ffffffff16565b600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506153a086600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613f5c90919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061543583600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613e6c90919063ffffffff16565b600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506154ca85600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613e6c90919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550615516816155a4565b6155208483615749565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600f54600d81905550601054600e81905550565b60006155ae613df7565b905060006155c58284614b4790919063ffffffff16565b905061561981600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613e6c90919063ffffffff16565b600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600760003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156157445761570083600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613e6c90919063ffffffff16565b600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050565b61575e82600b54613f5c90919063ffffffff16565b600b8190555061577981600c54613e6c90919063ffffffff16565b600c81905550505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373526563697069656e742065786365656473206d61782077616c6c65742073697a652e5472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7757652063616e6e6f7420626c61636b6c69737420556e695377617020726f7574657245524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737357652063616e206e6f74206578636c75646520556e697377617020726f757465722e4578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220c193f7cbf05f69ce74d0bb46705c77ccbe647e9e7b0889b967e8809e0ce8eca864736f6c634300060c0033

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

000000000000000000000000d310e568c4be68ec133bf64f4bb0000fb244f237000000000000000000000000d310e568c4be68ec133bf64f4bb0000fb244f237

-----Decoded View---------------
Arg [0] : devWalletAddress (address): 0xD310e568c4be68Ec133BF64F4bb0000fb244f237
Arg [1] : marketingWalletAddress (address): 0xD310e568c4be68Ec133BF64F4bb0000fb244f237

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000d310e568c4be68ec133bf64f4bb0000fb244f237
Arg [1] : 000000000000000000000000d310e568c4be68ec133bf64f4bb0000fb244f237


Deployed Bytecode Sourcemap

25912:20771:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28867:91;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29871:173;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;46087:141;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;31219:95;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27186:51;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;29180:103;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;46417:120;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;32508:368;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;46240:165;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;30056:329;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;45887:188;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;32227:269;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;45241:92;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;29077:91;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;30397:230;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;31326:405;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;27125:46;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;31743:472;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27248:38;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;38743:168;;;;;;;;;;;;;:::i;:::-;;34847:131;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;45694:181;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;17102:98;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27329:30;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;29295:210;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;16498:160;;;;;;;;;;;;;:::i;:::-;;15796:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;28970:95;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46549:127;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;30639:281;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;45345:93;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;29517:179;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;31062:145;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;32888:541;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;27074:40;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;30932:118;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;29708:151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;39103:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;33441:475;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;16830:260;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;38923:168;;;;;;;;;;;;;:::i;:::-;;45450:102;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;45564:118;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;33928:518;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;28867:91;28904:13;28941:5;;;;;;;;;;;;;;;;;28934:12;;28867:91;:::o;29871:173::-;29946:4;29967:39;29976:12;:10;:12::i;:::-;29990:7;29999:6;29967:8;:39::i;:::-;30028:4;30021:11;;29871:173;;;;:::o;46087:141::-;16044:12;:10;:12::i;:::-;16034:22;;:6;;;;;;;;;;:22;;;16026:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46200:16:::1;46180:17;;:36;;;;;;;;;;;;;;;;;;46087:141:::0;:::o;31219:95::-;31261:7;31292:10;;31285:17;;31219:95;:::o;27186:51::-;;;:::o;29180:103::-;29233:7;26597:19;29257:14;;29180:103;:::o;46417:120::-;16044:12;:10;:12::i;:::-;16034:22;;:6;;;;;;;;;;:22;;;16026:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46514:11:::1;46499:12;:26;;;;46417:120:::0;:::o;32508:368::-;16044:12;:10;:12::i;:::-;16034:22;;:6;;;;;;;;;;:22;;;16026:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32607:42:::1;32596:53;;:7;:53;;;;32588:100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32712:17;:26;32730:7;32712:26;;;;;;;;;;;;;;;;;;;;;;;;;32711:27;32702:71;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;32816:4;32787:17;:26;32805:7;32787:26;;;;;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;;;32834:16;32856:7;32834:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32508:368:::0;:::o;46240:165::-;16044:12;:10;:12::i;:::-;16034:22;;:6;;;;;;;;;;:22;;;16026:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46371:22:::1;46345:23;;:48;;;;;;;;;;;;;;;;;;46240:165:::0;:::o;30056:329::-;30154:4;30175:36;30185:6;30193:9;30204:6;30175:9;:36::i;:::-;30226:121;30235:6;30243:12;:10;:12::i;:::-;30257:89;30295:6;30257:89;;;;;;;;;;;;;;;;;:11;:19;30269:6;30257:19;;;;;;;;;;;;;;;:33;30277:12;:10;:12::i;:::-;30257:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;30226:8;:121::i;:::-;30369:4;30362:11;;30056:329;;;;;:::o;45887:188::-;16044:12;:10;:12::i;:::-;16034:22;;:6;;;;;;;;;;:22;;;16026:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45980:1:::1;45969:7;:12;;:29;;;;;45996:2;45985:7;:13;;45969:29;45961:69;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;46056:7;46045:8;:18;;;;45887:188:::0;:::o;32227:269::-;32293:7;32336;;32325;:18;;32317:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32405:19;32428:10;:8;:10::i;:::-;32405:33;;32460:24;32472:11;32460:7;:11;;:24;;;;:::i;:::-;32453:31;;;32227:269;;;:::o;45241:92::-;45283:7;45314;;45307:14;;45241:92;:::o;29077:91::-;29118:5;26873:2;29140:16;;29077:91;:::o;30397:230::-;30485:4;30506:83;30515:12;:10;:12::i;:::-;30529:7;30538:50;30577:10;30538:11;:25;30550:12;:10;:12::i;:::-;30538:25;;;;;;;;;;;;;;;:34;30564:7;30538:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;30506:8;:83::i;:::-;30611:4;30604:11;;30397:230;;;;:::o;31326:405::-;31382:14;31399:12;:10;:12::i;:::-;31382:29;;31435:11;:19;31447:6;31435:19;;;;;;;;;;;;;;;;;;;;;;;;;31434:20;31426:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31519:15;31543:19;31554:7;31543:10;:19::i;:::-;31518:44;;;;;;;31595:28;31615:7;31595;:15;31603:6;31595:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;31577:7;:15;31585:6;31577:15;;;;;;;;;;;;;;;:46;;;;31648:20;31660:7;31648;;:11;;:20;;;;:::i;:::-;31638:7;:30;;;;31696:23;31711:7;31696:10;;:14;;:23;;;;:::i;:::-;31683:10;:36;;;;31326:405;;;:::o;27125:46::-;;;;;;;;;;;;;:::o;31743:472::-;31833:7;26597:19;31865:7;:18;;31857:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31939:17;31934:270;;31978:15;32002:19;32013:7;32002:10;:19::i;:::-;31977:44;;;;;;;32047:7;32040:14;;;;;31934:270;32097:23;32128:19;32139:7;32128:10;:19::i;:::-;32095:52;;;;;;;32173:15;32166:22;;;31743:472;;;;;:::o;27248:38::-;;;:::o;38743:168::-;16044:12;:10;:12::i;:::-;16034:22;;:6;;;;;;;;;;:22;;;16026:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38801:23:::1;38827:24;38845:4;38827:9;:24::i;:::-;38801:50;;38866:33;38883:15;38866:16;:33::i;:::-;16108:1;38743:168::o:0;34847:131::-;34911:4;34939:18;:27;34958:7;34939:27;;;;;;;;;;;;;;;;;;;;;;;;;34932:34;;34847:131;;;:::o;45694:181::-;16044:12;:10;:12::i;:::-;16034:22;;:6;;;;;;;;;;:22;;;16026:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45784:1:::1;45774:6;:11;;:27;;;;;45799:2;45789:6;:12;;45774:27;45766:66;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;45857:6;45847:7;:16;;;;45694:181:::0;:::o;17102:98::-;17148:7;17179:9;;17172:16;;17102:98;:::o;27329:30::-;;;;;;;;;;;;;:::o;29295:210::-;29361:7;29389:11;:20;29401:7;29389:20;;;;;;;;;;;;;;;;;;;;;;;;;29385:49;;;29418:7;:16;29426:7;29418:16;;;;;;;;;;;;;;;;29411:23;;;;29385:49;29456:37;29476:7;:16;29484:7;29476:16;;;;;;;;;;;;;;;;29456:19;:37::i;:::-;29449:44;;29295:210;;;;:::o;16498:160::-;16044:12;:10;:12::i;:::-;16034:22;;:6;;;;;;;;;;:22;;;16026:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16609:1:::1;16572:40;;16593:6;::::0;::::1;;;;;;;;16572:40;;;;;;;;;;;;16644:1;16627:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;16498:160::o:0;15796:87::-;15834:7;15865:6;;;;;;;;;;;15858:13;;15796:87;:::o;28970:95::-;29009:13;29046:7;;;;;;;;;;;;;;;;;29039:14;;28970:95;:::o;46549:127::-;16044:12;:10;:12::i;:::-;16034:22;;:6;;;;;;;;;;:22;;;16026:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46651:13:::1;46634:14;:30;;;;46549:127:::0;:::o;30639:281::-;30732:4;30753:129;30762:12;:10;:12::i;:::-;30776:7;30785:96;30824:15;30785:96;;;;;;;;;;;;;;;;;:11;:25;30797:12;:10;:12::i;:::-;30785:25;;;;;;;;;;;;;;;:34;30811:7;30785:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;30753:8;:129::i;:::-;30904:4;30897:11;;30639:281;;;;:::o;45345:93::-;45389:7;45418:8;;45411:15;;45345:93;:::o;29517:179::-;29595:4;29616:42;29626:12;:10;:12::i;:::-;29640:9;29651:6;29616:9;:42::i;:::-;29680:4;29673:11;;29517:179;;;;:::o;31062:145::-;16044:12;:10;:12::i;:::-;16034:22;;:6;;;;;;;;;;:22;;;16026:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31187:8:::1;31157:18;:27;31176:7;31157:27;;;;;;;;;;;;;;;;:38;;;;;;;;;;;;;;;;;;31062:145:::0;;:::o;32888:541::-;16044:12;:10;:12::i;:::-;16034:22;;:6;;;;;;;;;;:22;;;16026:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32980:17:::1;:26;32998:7;32980:26;;;;;;;;;;;;;;;;;;;;;;;;;32971:66;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;33055:9;33050:369;33074:16;:23;;;;33070:1;:27;33050:369;;;33151:7;33128:30;;:16;33145:1;33128:19;;;;;;;;;;;;;;;;;;;;;;;;;:30;;;33124:281;;;33206:16;33249:1;33223:16;:23;;;;:27;33206:45;;;;;;;;;;;;;;;;;;;;;;;;;33184:16;33201:1;33184:19;;;;;;;;;;;;;;;;:67;;;;;;;;;;;;;;;;;;33304:5;33275:17;:26;33293:7;33275:26;;;;;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;33333:16;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33379:5;;33124:281;33099:3;;;;;;;33050:369;;;;32888:541:::0;:::o;27074:40::-;;;;;;;;;;;;;:::o;30932:118::-;30990:4;31018:11;:20;31030:7;31018:20;;;;;;;;;;;;;;;;;;;;;;;;;31011:27;;30932:118;;;:::o;29708:151::-;29789:7;29820:11;:18;29832:5;29820:18;;;;;;;;;;;;;;;:27;29839:7;29820:27;;;;;;;;;;;;;;;;29813:34;;29708:151;;;;:::o;39103:106::-;16044:12;:10;:12::i;:::-;16034:22;;:6;;;;;;;;;;:22;;;16026:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39190:7:::1;39176:11;;:21;;;;;;;;;;;;;;;;;;39103:106:::0;:::o;33441:475::-;16044:12;:10;:12::i;:::-;16034:22;;:6;;;;;;;;;;:22;;;16026:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33537:42:::1;33526:53;;:7;:53;;;;33518:100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33642:11;:20;33654:7;33642:20;;;;;;;;;;;;;;;;;;;;;;;;;33641:21;33633:61;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;33731:1;33712:7;:16;33720:7;33712:16;;;;;;;;;;;;;;;;:20;33709:116;;;33772:37;33792:7;:16;33800:7;33792:16;;;;;;;;;;;;;;;;33772:19;:37::i;:::-;33753:7;:16;33761:7;33753:16;;;;;;;;;;;;;;;:56;;;;33709:116;33862:4;33839:11;:20;33851:7;33839:20;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;33881:9;33896:7;33881:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33441:475:::0;:::o;16830:260::-;16044:12;:10;:12::i;:::-;16034:22;;:6;;;;;;;;;;:22;;;16026:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16943:1:::1;16923:22;;:8;:22;;;;16915:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17037:8;17008:38;;17029:6;::::0;::::1;;;;;;;;17008:38;;;;;;;;;;;;17070:8;17061:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;16830:260:::0;:::o;38923:168::-;16044:12;:10;:12::i;:::-;16034:22;;:6;;;;;;;;;;:22;;;16026:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38981:26:::1;39010:21;38981:50;;39046:33;39060:18;39046:13;:33::i;:::-;16108:1;38923:168::o:0;45450:102::-;45497:7;45528:12;;45521:19;;45450:102;:::o;45564:118::-;45610:15;45649:21;45642:28;;45564:118;:::o;33928:518::-;16044:12;:10;:12::i;:::-;16034:22;;:6;;;;;;;;;;:22;;;16026:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34013:11:::1;:20;34025:7;34013:20;;;;;;;;;;;;;;;;;;;;;;;;;34005:56;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;34081:9;34076:359;34100:9;:16;;;;34096:1;:20;34076:359;;;34162:7;34146:23;;:9;34156:1;34146:12;;;;;;;;;;;;;;;;;;;;;;;;;:23;;;34142:278;;;34209:9;34238:1;34219:9;:16;;;;:20;34209:31;;;;;;;;;;;;;;;;;;;;;;;;;34194:9;34204:1;34194:12;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;34282:1;34263:7;:16;34271:7;34263:16;;;;;;;;;;;;;;;:20;;;;34329:5;34306:11;:20;34318:7;34306:20;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;34357:9;:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34395:5;;34142:278;34118:3;;;;;;;34076:359;;;;33928:518:::0;:::o;253:114::-;306:15;345:10;338:17;;253:114;:::o;34990:357::-;35104:1;35087:19;;:5;:19;;;;35079:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35189:1;35170:21;;:7;:21;;;;35162:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35277:6;35247:11;:18;35259:5;35247:18;;;;;;;;;;;;;;;:27;35266:7;35247:27;;;;;;;;;;;;;;;:36;;;;35319:7;35303:32;;35312:5;35303:32;;;35328:6;35303:32;;;;;;;;;;;;;;;;;;34990:357;;;:::o;35359:2507::-;35478:1;35460:20;;:6;:20;;;;35452:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35566:1;35545:23;;:9;:23;;;;35537:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35640:1;35631:6;:10;35623:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35711:17;:25;35729:6;35711:25;;;;;;;;;;;;;;;;;;;;;;;;;35710:26;35702:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35784:17;:29;35802:10;35784:29;;;;;;;;;;;;;;;;;;;;;;;;;35783:30;35775:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35861:17;:28;35879:9;35861:28;;;;;;;;;;;;;;;;;;;;;;;;;35860:29;35852:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35941:7;:5;:7::i;:::-;35931:17;;:6;:17;;;;:41;;;;;35965:7;:5;:7::i;:::-;35952:20;;:9;:20;;;;35931:41;35928:156;;;36011:12;;36001:6;:22;;35993:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35928:156;36111:7;:5;:7::i;:::-;36101:17;;:6;:17;;;;:41;;;;;36135:7;:5;:7::i;:::-;36122:20;;:9;:20;;;;36101:41;:71;;;;;36159:13;36146:26;;:9;:26;;;;36101:71;:103;;;;;36197:6;36176:28;;:9;:28;;;;36101:103;36098:309;;;36225:29;36257:20;36267:9;36257;:20::i;:::-;36225:52;;36338:14;;36328:6;36304:21;:30;:48;;36296:95;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36098:309;;36687:28;36718:24;36736:4;36718:9;:24::i;:::-;36687:55;;36786:12;;36762:20;:36;36759:124;;36855:12;;36832:35;;36759:124;36899:24;27488:13;36926:20;:53;;36899:80;;36999:6;;;;;;;;;;;36998:7;:22;;;;;37009:11;;;;;;;;;;;36998:22;:45;;;;;37024:19;36998:45;:72;;;;;37057:13;37047:23;;:6;:23;;;;36998:72;36994:417;;;37162:38;37179:20;37162:16;:38::i;:::-;37221:26;37250:21;37221:50;;37314:1;37293:18;:22;37290:106;;;37340:36;37354:21;37340:13;:36::i;:::-;37290:106;36994:417;;37492:12;37507:4;37492:19;;37619:18;:26;37638:6;37619:26;;;;;;;;;;;;;;;;;;;;;;;;;:59;;;;37649:18;:29;37668:9;37649:29;;;;;;;;;;;;;;;;;;;;;;;;;37619:59;37616:113;;;37708:5;37698:15;;37616:113;37807:47;37822:6;37829:9;37839:6;37846:7;37807:14;:47::i;:::-;35359:2507;;;;;;:::o;4780:208::-;4866:7;4903:1;4898;:6;;4906:12;4890:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4934:9;4950:1;4946;:5;4934:17;;4975:1;4968:8;;;4780:208;;;;;:::o;44447:175::-;44488:7;44513:15;44530;44549:19;:17;:19::i;:::-;44512:56;;;;44590:20;44602:7;44590;:11;;:20;;;;:::i;:::-;44583:27;;;;44447:175;:::o;6310:140::-;6368:7;6399:39;6403:1;6406;6399:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;6392:46;;6310:140;;;;:::o;3783:197::-;3841:7;3865:9;3881:1;3877;:5;3865:17;;3910:1;3905;:6;;3897:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3967:1;3960:8;;;3783:197;;;;:::o;43140:467::-;43199:7;43208;43217;43226;43235;43244;43265:23;43290:12;43304:13;43321:39;43333:7;43342;;43351:8;;43321:11;:39::i;:::-;43264:96;;;;;;43371:19;43393:10;:8;:10::i;:::-;43371:32;;43415:15;43432:23;43457:12;43473:46;43485:7;43494:4;43500:5;43507:11;43473;:46::i;:::-;43414:105;;;;;;43538:7;43547:15;43564:4;43570:15;43587:4;43593:5;43530:69;;;;;;;;;;;;;;;;;;;43140:467;;;;;;;:::o;4298:144::-;4356:7;4387:43;4391:1;4394;4387:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;4380:50;;4298:144;;;;:::o;37878:656::-;27861:4;27852:6;;:13;;;;;;;;;;;;;;;;;;38023:21:::1;38061:1;38047:16;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38023:40;;38096:4;38078;38083:1;38078:7;;;;;;;;;;;;;:23;;;;;;;;;::::0;::::1;38126:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;38116:4;38121:1;38116:7;;;;;;;;;;;;;:32;;;;;;;;;::::0;::::1;38165:62;38182:4;38197:15;38215:11;38165:8;:62::i;:::-;38274:15;:66;;;38359:11;38389:1;38437:4;38468;38492:15;38274:248;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;27880:1;27905:5:::0;27896:6;;:14;;;;;;;;;;;;;;;;;;37878:656;:::o;38546:185::-;38608:17;;;;;;;;;;;:26;;:41;38635:13;38646:1;38635:6;:10;;:13;;;;:::i;:::-;38608:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38664:23;;;;;;;;;;;:32;;:55;38697:21;38716:1;38697:14;38708:2;38697:6;:10;;:14;;;;:::i;:::-;:18;;:21;;;;:::i;:::-;38664:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38546:185;:::o;39221:883::-;39337:7;39333:44;;39363:14;:12;:14::i;:::-;39333:44;39398:11;:19;39410:6;39398:19;;;;;;;;;;;;;;;;;;;;;;;;;:46;;;;;39422:11;:22;39434:9;39422:22;;;;;;;;;;;;;;;;;;;;;;;;;39421:23;39398:46;39394:637;;;39465:48;39487:6;39495:9;39506:6;39465:21;:48::i;:::-;39394:637;;;39540:11;:19;39552:6;39540:19;;;;;;;;;;;;;;;;;;;;;;;;;39539:20;:46;;;;;39563:11;:22;39575:9;39563:22;;;;;;;;;;;;;;;;;;;;;;;;;39539:46;39535:496;;;39606:46;39626:6;39634:9;39645:6;39606:19;:46::i;:::-;39535:496;;;39679:11;:19;39691:6;39679:19;;;;;;;;;;;;;;;;;;;;;;;;;39678:20;:47;;;;;39703:11;:22;39715:9;39703:22;;;;;;;;;;;;;;;;;;;;;;;;;39702:23;39678:47;39674:357;;;39746:44;39764:6;39772:9;39783:6;39746:17;:44::i;:::-;39674:357;;;39816:11;:19;39828:6;39816:19;;;;;;;;;;;;;;;;;;;;;;;;;:45;;;;;39839:11;:22;39851:9;39839:22;;;;;;;;;;;;;;;;;;;;;;;;;39816:45;39812:219;;;39882:48;39904:6;39912:9;39923:6;39882:21;:48::i;:::-;39812:219;;;39971:44;39989:6;39997:9;40008:6;39971:17;:44::i;:::-;39812:219;39674:357;39535:496;39394:637;40051:7;40047:45;;40077:15;:13;:15::i;:::-;40047:45;39221:883;;;;:::o;44634:595::-;44684:7;44693;44717:15;44735:7;;44717:25;;44757:15;26597:19;44757:25;;44802:9;44797:305;44821:9;:16;;;;44817:1;:20;44797:305;;;44891:7;44867;:21;44875:9;44885:1;44875:12;;;;;;;;;;;;;;;;;;;;;;;;;44867:21;;;;;;;;;;;;;;;;:31;:66;;;;44926:7;44902;:21;44910:9;44920:1;44910:12;;;;;;;;;;;;;;;;;;;;;;;;;44902:21;;;;;;;;;;;;;;;;:31;44867:66;44863:97;;;44943:7;;26597:19;44935:25;;;;;;;;;44863:97;44989:34;45001:7;:21;45009:9;45019:1;45009:12;;;;;;;;;;;;;;;;;;;;;;;;;45001:21;;;;;;;;;;;;;;;;44989:7;:11;;:34;;;;:::i;:::-;44979:44;;45052:34;45064:7;:21;45072:9;45082:1;45072:12;;;;;;;;;;;;;;;;;;;;;;;;;45064:21;;;;;;;;;;;;;;;;45052:7;:11;;:34;;;;:::i;:::-;45042:44;;44839:3;;;;;;;44797:305;;;;45130:20;26597:19;45130:7;;:11;;:20;;;;:::i;:::-;45120:7;:30;45116:61;;;45160:7;;26597:19;45152:25;;;;;;;;45116:61;45200:7;45209;45192:25;;;;;;44634:595;;;:::o;6987:298::-;7073:7;7109:1;7105;:5;7112:12;7097:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7140:9;7156:1;7152;:5;;;;;;7140:17;;7272:1;7265:8;;;6987:298;;;;;:::o;43619:371::-;43712:7;43721;43730;43754:12;43769:28;43793:3;43769:19;43781:6;43769:7;:11;;:19;;;;:::i;:::-;:23;;:28;;;;:::i;:::-;43754:43;;43812:13;43828:29;43853:3;43828:20;43840:7;43828;:11;;:20;;;;:::i;:::-;:24;;:29;;;;:::i;:::-;43812:45;;43872:23;43898:28;43920:5;43898:17;43910:4;43898:7;:11;;:17;;;;:::i;:::-;:21;;:28;;;;:::i;:::-;43872:54;;43949:15;43966:4;43972:5;43941:37;;;;;;;;;43619:371;;;;;;;:::o;44002:433::-;44112:7;44121;44130;44154:15;44172:24;44184:11;44172:7;:11;;:24;;;;:::i;:::-;44154:42;;44211:12;44226:21;44235:11;44226:4;:8;;:21;;;;:::i;:::-;44211:36;;44262:13;44278:22;44288:11;44278:5;:9;;:22;;;;:::i;:::-;44262:38;;44315:23;44341:28;44363:5;44341:17;44353:4;44341:7;:11;;:17;;;;:::i;:::-;:21;;:28;;;;:::i;:::-;44315:54;;44392:7;44401:15;44418:4;44384:39;;;;;;;;;;44002:433;;;;;;;;:::o;5282:511::-;5340:7;5606:1;5601;:6;5597:55;;;5635:1;5628:8;;;;5597:55;5668:9;5684:1;5680;:5;5668:17;;5717:1;5712;5708;:5;;;;;;:10;5700:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5780:1;5773:8;;;5282:511;;;;;:::o;34458:238::-;34519:1;34508:7;;:12;:29;;;;;34536:1;34524:8;;:13;34508:29;34505:41;;;34539:7;;34505:41;34580:7;;34562:15;:25;;;;34621:8;;34602:16;:27;;;;34656:1;34646:7;:11;;;;34683:1;34672:8;:12;;;;34458:238;:::o;41247:580::-;41354:15;41371:23;41396:12;41410:23;41435:12;41449:13;41466:19;41477:7;41466:10;:19::i;:::-;41353:132;;;;;;;;;;;;41518:28;41538:7;41518;:15;41526:6;41518:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;41500:7;:15;41508:6;41500:15;;;;;;;;;;;;;;;:46;;;;41579:28;41599:7;41579;:15;41587:6;41579:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;41561:7;:15;41569:6;41561:15;;;;;;;;;;;;;;;:46;;;;41643:39;41666:15;41643:7;:18;41651:9;41643:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;41622:7;:18;41630:9;41622:18;;;;;;;;;;;;;;;:60;;;;41697:16;41707:5;41697:9;:16::i;:::-;41728:23;41740:4;41746;41728:11;:23::i;:::-;41788:9;41771:44;;41780:6;41771:44;;;41799:15;41771:44;;;;;;;;;;;;;;;;;;41247:580;;;;;;;;;:::o;40643:592::-;40748:15;40765:23;40790:12;40804:23;40829:12;40843:13;40860:19;40871:7;40860:10;:19::i;:::-;40747:132;;;;;;;;;;;;40912:28;40932:7;40912;:15;40920:6;40912:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;40894:7;:15;40902:6;40894:15;;;;;;;;;;;;;;;:46;;;;40976:39;40999:15;40976:7;:18;40984:9;40976:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;40955:7;:18;40963:9;40955:18;;;;;;;;;;;;;;;:60;;;;41051:39;41074:15;41051:7;:18;41059:9;41051:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;41030:7;:18;41038:9;41030:18;;;;;;;;;;;;;;;:60;;;;41105:16;41115:5;41105:9;:16::i;:::-;41136:23;41148:4;41154;41136:11;:23::i;:::-;41196:9;41179:44;;41188:6;41179:44;;;41207:15;41179:44;;;;;;;;;;;;;;;;;;40643:592;;;;;;;;;:::o;40116:515::-;40219:15;40236:23;40261:12;40275:23;40300:12;40314:13;40331:19;40342:7;40331:10;:19::i;:::-;40218:132;;;;;;;;;;;;40383:28;40403:7;40383;:15;40391:6;40383:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;40365:7;:15;40373:6;40365:15;;;;;;;;;;;;;;;:46;;;;40447:39;40470:15;40447:7;:18;40455:9;40447:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;40426:7;:18;40434:9;40426:18;;;;;;;;;;;;;;;:60;;;;40501:16;40511:5;40501:9;:16::i;:::-;40532:23;40544:4;40550;40532:11;:23::i;:::-;40592:9;40575:44;;40584:6;40575:44;;;40603:15;40575:44;;;;;;;;;;;;;;;;;;40116:515;;;;;;;;;:::o;41839:655::-;41946:15;41963:23;41988:12;42002:23;42027:12;42041:13;42058:19;42069:7;42058:10;:19::i;:::-;41945:132;;;;;;;;;;;;42110:28;42130:7;42110;:15;42118:6;42110:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;42092:7;:15;42100:6;42092:15;;;;;;;;;;;;;;;:46;;;;42171:28;42191:7;42171;:15;42179:6;42171:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;42153:7;:15;42161:6;42153:15;;;;;;;;;;;;;;;:46;;;;42235:39;42258:15;42235:7;:18;42243:9;42235:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;42214:7;:18;42222:9;42214:18;;;;;;;;;;;;;;;:60;;;;42310:39;42333:15;42310:7;:18;42318:9;42310:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;42289:7;:18;42297:9;42289:18;;;;;;;;;;;;;;;:60;;;;42364:16;42374:5;42364:9;:16::i;:::-;42395:23;42407:4;42413;42395:11;:23::i;:::-;42455:9;42438:44;;42447:6;42438:44;;;42466:15;42438:44;;;;;;;;;;;;;;;;;;41839:655;;;;;;;;;:::o;34708:127::-;34766:15;;34756:7;:25;;;;34807:16;;34796:8;:27;;;;34708:127::o;42506:349::-;42563:19;42586:10;:8;:10::i;:::-;42563:33;;42611:13;42627:22;42637:11;42627:5;:9;;:22;;;;:::i;:::-;42611:38;;42689:33;42716:5;42689:7;:22;42705:4;42689:22;;;;;;;;;;;;;;;;:26;;:33;;;;:::i;:::-;42664:7;:22;42680:4;42664:22;;;;;;;;;;;;;;;:58;;;;42740:11;:26;42760:4;42740:26;;;;;;;;;;;;;;;;;;;;;;;;;42737:106;;;42810:33;42837:5;42810:7;:22;42826:4;42810:22;;;;;;;;;;;;;;;;:26;;:33;;;;:::i;:::-;42785:7;:22;42801:4;42785:22;;;;;;;;;;;;;;;:58;;;;42737:106;42506:349;;;:::o;42867:159::-;42949:17;42961:4;42949:7;;:11;;:17;;;;:::i;:::-;42939:7;:27;;;;42994:20;43009:4;42994:10;;:14;;:20;;;;:::i;:::-;42981:10;:33;;;;42867:159;;:::o

Swarm Source

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