ETH Price: $2,997.28 (-1.15%)
Gas: 4 Gwei

Token

NodeAI (GPU)
 

Overview

Max Total Supply

100,000,000 GPU

Holders

33,609 (0.00%)

Total Transfers

-

Market

Price

$1.38 @ 0.000460 ETH (-6.05%)

Onchain Market Cap

$138,000,000.00

Circulating Supply Market Cap

$134,257,925.00

Other Info

Token Contract (WITH 18 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Node AI emerges as an innovative decentralized platform engineered to streamline access to GPU and AI resources. It empowers users to engage, contribute, and derive benefits from the rapidly advancing domain of artificial intelligence.

Market

Volume (24H):$822,256.00
Market Capitalization:$134,257,925.00
Circulating Supply:97,153,156.00 GPU
Market Data Source: Coinmarketcap

# Exchange Pair Price  24H Volume % Volume
1
Uniswap V2 (Ethereum)
0X1258D60B224C0C5CD888D37BBF31AA5FCFB7E870-0XC02AAA39B223FE8D0A0E5C4F27EAD9083C756CC2$1.34
0.0004475 Eth
$454,314.00
322,549.453 0X1258D60B224C0C5CD888D37BBF31AA5FCFB7E870
55.7325%
2
BingX
GPU-USDT$1.44
0.0004791 Eth
$264,585.00
181,704.520 GPU
31.3962%
3
Uniswap V3 (Ethereum)
0X1258D60B224C0C5CD888D37BBF31AA5FCFB7E870-0XC02AAA39B223FE8D0A0E5C4F27EAD9083C756CC2$1.37
0.0004559 Eth
$105,931.00
74,491.968 0X1258D60B224C0C5CD888D37BBF31AA5FCFB7E870
12.8713%

Contract Source Code Verified (Exact Match)

Contract Name:
NODEAI

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-12-08
*/

// SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.19;

/*

    /$$$$$$  /$$$$$$$  /$$   /$$
    /$$__  $$| $$__  $$| $$  | $$
    | $$  \__/| $$  \ $$| $$  | $$
    | $$ /$$$$| $$$$$$$/| $$  | $$
    | $$|_  $$| $$____/ | $$  | $$
    | $$  \ $$| $$      | $$  | $$
    |  $$$$$$/| $$      |  $$$$$$/
    \______/ |__/       \______/ 
                                                         
                        
    Website:    https://nodeai.app
    Twitter:    https://twitter.com/NodeAIETH
    Telegram:   https://t.me/nodeaieth

    Rent or lend GPU power, and earn rewards with $GPU.

    We generate revenue by powering AI with GPUs.
*/

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

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

interface IERC20 {
    function totalSupply() external view returns (uint256);

    function balanceOf(address account) external view returns (uint256);

    function transfer(
        address recipient,
        uint256 amount
    ) external returns (bool);

    function allowance(
        address owner,
        address spender
    ) external view returns (uint256);

    function approve(address spender, uint256 amount) external returns (bool);

    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    event Transfer(address indexed from, address indexed to, uint256 value);
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );
}

/**
 * @dev Collection of functions related to the address type
 */
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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @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://consensys.net/diligence/blog/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"
        );

        (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
            functionCallWithValue(
                target,
                data,
                0,
                "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"
        );
        (bool success, bytes memory returndata) = target.call{value: value}(
            data
        );
        return
            verifyCallResultFromTarget(
                target,
                success,
                returndata,
                errorMessage
            );
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data
    ) internal view returns (bytes memory) {
        return
            functionStaticCall(
                target,
                data,
                "Address: low-level static call failed"
            );
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return
            verifyCallResultFromTarget(
                target,
                success,
                returndata,
                errorMessage
            );
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data
    ) internal returns (bytes memory) {
        return
            functionDelegateCall(
                target,
                data,
                "Address: low-level delegate call failed"
            );
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return
            verifyCallResultFromTarget(
                target,
                success,
                returndata,
                errorMessage
            );
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(
        bytes memory returndata,
        string memory errorMessage
    ) private pure {
        // 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
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

interface IUniswapV2Pair {
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );
    event Transfer(address indexed from, address indexed to, uint256 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 (uint256);

    function balanceOf(address owner) external view returns (uint256);

    function allowance(
        address owner,
        address spender
    ) external view returns (uint256);

    function approve(address spender, uint256 value) external returns (bool);

    function transfer(address to, uint256 value) external returns (bool);

    function transferFrom(
        address from,
        address to,
        uint256 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 (uint256);

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    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 (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

    function burn(
        address to
    ) external returns (uint256 amount0, uint256 amount1);

    function swap(
        uint256 amount0Out,
        uint256 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,
        uint256 amountADesired,
        uint256 amountBDesired,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountA, uint256 amountB, uint256 liquidity);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

contract NODEAI is Context, IERC20, Ownable {
    using Address for address;
    //Mapping section for better tracking.
    mapping(address => uint256) private _tOwned;
    mapping(address => mapping(address => uint256)) private _allowances;
    mapping(address => bool) private _isExcludedFromFee;

    //Loging and Event Information for better troubleshooting.
    event Log(string, uint256);
    event AuditLog(string, address);
    event RewardLiquidityProviders(uint256 tokenAmount);
    event SwapAndLiquifyEnabledUpdated(bool enabled);
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiqudity
    );
    event SwapTokensForETH(uint256 amountIn, address[] path);
    //Supply Definition.
    uint256 private _tTotal = 100_000_000 ether;
    uint256 private _tFeeTotal;
    //Token Definition.
    string public constant name = "NodeAI";
    string public constant symbol = "GPU";
    uint8 public constant decimals = 18;
    //Definition of Wallets for Marketing or team.
    address payable public marketingWallet =
        payable(0xD335c5E36F1B19AECE98b78e9827a9DF76eE29E6);
    address payable public revenueWallet =
        payable(0xE4eEc0C7e825f988aEEe7d05BE579519532E94E5);
    //Dead Wallet for SAFU Contract
    address public constant deadWallet =
        0x000000000000000000000000000000000000dEaD;

    //Taxes Definition.
    uint public buyFee = 4;

    uint256 public sellFee = 4;
    uint public revenueFee = 1;
    uint public marketingFee = 3;

    uint256 public marketingTokensCollected = 0;

    uint256 public totalMarketingTokensCollected = 0;

    uint256 public minimumTokensBeforeSwap = 10_000 ether;

    //Oracle Price Update, Manual Process.
    uint256 public swapOutput = 0;
    //Router and Pair Configuration.
    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    address private immutable WETH;
    //Tracking of Automatic Swap vs Manual Swap.
    bool public inSwapAndLiquify;
    bool public swapAndLiquifyEnabled = true;

    modifier lockTheSwap() {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }

    constructor() {
        _tOwned[_msgSender()] = _tTotal;
        address currentRouter;
        //Adding Variables for all the routers for easier deployment for our customers.
        if (block.chainid == 56) {
            currentRouter = 0x10ED43C718714eb63d5aA57B78B54704E256024E; // PCS Router
        } else if (block.chainid == 97) {
            currentRouter = 0xD99D1c33F9fC3444f8101754aBC46c52416550D1; // PCS Testnet
        } else if (block.chainid == 43114) {
            currentRouter = 0x60aE616a2155Ee3d9A68541Ba4544862310933d4; //Avax Mainnet
        } else if (block.chainid == 137) {
            currentRouter = 0xa5E0829CaCEd8fFDD4De3c43696c57F7D7A678ff; //Polygon Ropsten
        } else if (block.chainid == 6066) {
            currentRouter = 0x4169Db906fcBFB8b12DbD20d98850Aee05B7D889; //Tres Leches Chain
        } else if (block.chainid == 250) {
            currentRouter = 0xF491e7B69E4244ad4002BC14e878a34207E38c29; //SpookySwap FTM
        } else if (block.chainid == 42161) {
            currentRouter = 0x1b02dA8Cb0d097eB8D57A175b88c7D8b47997506; //Arbitrum Sushi
        } else if (
            block.chainid == 1 || block.chainid == 4 || block.chainid == 5
        ) {
            currentRouter = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D; //Mainnet
        } else {
            revert("You're not Blade");
        }

        //End of Router Variables.
        //Create Pair in the contructor, this may fail on some blockchains and can be done in a separate line if needed.
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(currentRouter);
        WETH = _uniswapV2Router.WETH();
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), WETH);
        uniswapV2Router = _uniswapV2Router;
        _isExcludedFromFee[owner()] = true;
        _isExcludedFromFee[address(this)] = true;

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

    //Readable Functions.
    function totalSupply() public view override returns (uint256) {
        return _tTotal;
    }

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

    //ERC 20 Standard Transfer Functions
    function transfer(
        address recipient,
        uint256 amount
    ) public override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    //ERC 20 Standard Allowance Function
    function allowance(
        address _owner,
        address spender
    ) public view override returns (uint256) {
        return _allowances[_owner][spender];
    }

    //ERC 20 Standard Approve Function
    function approve(
        address spender,
        uint256 amount
    ) public override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    //ERC 20 Standard Transfer From
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public override returns (bool) {
        uint currentAllowance = _allowances[sender][_msgSender()];
        require(
            currentAllowance >= amount,
            "ERC20: transfer amount exceeds allowance"
        );
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), currentAllowance - amount);
        return true;
    }

    //ERC 20 Standard increase Allowance
    function increaseAllowance(
        address spender,
        uint256 addedValue
    ) public virtual returns (bool) {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][spender] + addedValue
        );
        return true;
    }

    //ERC 20 Standard decrease Allowance
    function decreaseAllowance(
        address spender,
        uint256 subtractedValue
    ) public virtual returns (bool) {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][spender] - subtractedValue
        );
        return true;
    }

    //Approve Function
    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);
    }

    //Transfer function, validate correct wallet structure, take fees, and other custom taxes are done during the transfer.
    function _transfer(address from, address to, uint256 amount) private {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");
        require(
            _tOwned[from] >= amount,
            "ERC20: transfer amount exceeds balance"
        );

        //Adding logic for automatic swap.
        uint256 contractTokenBalance = balanceOf(address(this));
        bool overMinimumTokenBalance = contractTokenBalance >=
            minimumTokensBeforeSwap;
        uint fee = 0;
        //if any account belongs to _isExcludedFromFee account then remove the fee
        if (
            !inSwapAndLiquify &&
            from != uniswapV2Pair &&
            overMinimumTokenBalance &&
            swapAndLiquifyEnabled
        ) {
            swapAndLiquify();
        }
        if (to == uniswapV2Pair && !_isExcludedFromFee[from]) {
            fee = (sellFee * amount) / 100;
        }
        if (from == uniswapV2Pair && !_isExcludedFromFee[to]) {
            fee = (buyFee * amount) / 100;
        }
        amount -= fee;
        if (fee > 0) {
            _tokenTransfer(from, address(this), fee);
            marketingTokensCollected += fee;
            totalMarketingTokensCollected += fee;
        }
        _tokenTransfer(from, to, amount);
    }

    //Swap Tokens for BNB or to add liquidity either automatically or manual, by default this is set to manual.
    //Corrected newBalance bug, it sending bnb to wallet and any remaining is on contract and can be recoverred.
    function swapAndLiquify() public lockTheSwap {
        uint256 totalTokens = balanceOf(address(this));
        swapTokensForEth(totalTokens);
        uint ethBalance = address(this).balance;
        uint totalFees = revenueFee + marketingFee;
        if (totalFees == 0) totalFees = 1;
        uint revenueAmount = (ethBalance * revenueFee) / totalFees;
        ethBalance -= revenueAmount;
        transferToAddressETH(revenueWallet, revenueAmount);
        transferToAddressETH(marketingWallet, ethBalance);

        marketingTokensCollected = 0;
    }

    //swap for eth is to support the converstion of tokens to weth during swapandliquify this is a supporting function
    function swapTokensForEth(uint256 tokenAmount) private {
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = WETH;
        _approve(address(this), address(uniswapV2Router), tokenAmount);

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

        emit SwapTokensForETH(tokenAmount, path);
    }

    //ERC 20 standard transfer, only added if taking fees to countup the amount of fees for better tracking and split purpose.
    function _tokenTransfer(
        address sender,
        address recipient,
        uint256 amount
    ) private {
        _tOwned[sender] -= amount;
        _tOwned[recipient] += amount;

        emit Transfer(sender, recipient, amount);
    }

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

    //exclude wallets from fees, this is needed for launch or other contracts.
    function excludeFromFee(address account) external onlyOwner {
        _isExcludedFromFee[account] = true;
        emit AuditLog(
            "We have excluded the following walled in fees:",
            account
        );
    }

    //include wallet back in fees.
    function includeInFee(address account) external onlyOwner {
        _isExcludedFromFee[account] = false;
        emit AuditLog(
            "We have including the following walled in fees:",
            account
        );
    }

    //Automatic Swap Configuration.
    function setTokensToSwap(
        uint256 _minimumTokensBeforeSwap
    ) external onlyOwner {
        require(
            _minimumTokensBeforeSwap >= 100 ether,
            "You need to enter more than 100 tokens."
        );
        minimumTokensBeforeSwap = _minimumTokensBeforeSwap;
        emit Log(
            "We have updated minimunTokensBeforeSwap to:",
            minimumTokensBeforeSwap
        );
    }

    function setSwapAndLiquifyEnabled(bool _enabled) external onlyOwner {
        require(swapAndLiquifyEnabled != _enabled, "Value already set");
        swapAndLiquifyEnabled = _enabled;
        emit SwapAndLiquifyEnabledUpdated(_enabled);
    }

    //set a new marketing wallet.
    function setMarketingWallet(address _marketingWallet) external onlyOwner {
        require(_marketingWallet != address(0), "setMarketingWallet: ZERO");
        marketingWallet = payable(_marketingWallet);
        emit AuditLog("We have Updated the MarketingWallet:", marketingWallet);
    }

    //set a new team wallet.
    function setRevenueWallet(address _revenueWallet) external onlyOwner {
        require(_revenueWallet != address(0), "setRevenueWallet: ZERO");
        revenueWallet = payable(_revenueWallet);
        emit AuditLog("We have Updated the RarketingWallet:", revenueWallet);
    }



    function transferToAddressETH(
        address payable recipient,
        uint256 amount
    ) private {
        if (amount == 0) return;
        (bool succ, ) = recipient.call{value: amount}("");
        require(succ, "Transfer failed.");
    }

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

    /////---fallback--////
    //This cannot be removed as is a fallback to the swapAndLiquify
    event SwapETHForTokens(uint256 amountIn, address[] path);

    function swapETHForTokens(uint256 amount) private {
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = WETH;
        path[1] = address(this);
        // make the swap
        uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{
            value: amount
        }(
            swapOutput, // accept any amount of Tokens
            path,
            deadWallet, // Burn address
            block.timestamp + 300
        );
        emit SwapETHForTokens(amount, path);
    }

    // Withdraw ETH that's potentially stuck in the Contract
    function recoverETHfromContract() external onlyOwner {
        uint ethBalance = address(this).balance;
        (bool succ, ) = payable(marketingWallet).call{value: ethBalance}("");
        require(succ, "Transfer failed");
        emit AuditLog(
            "We have recover the stock eth from contract.",
            marketingWallet
        );
    }

    // Withdraw ERC20 tokens that are potentially stuck in Contract
    function recoverTokensFromContract(
        address _tokenAddress,
        uint256 _amount
    ) external onlyOwner {
        require(
            _tokenAddress != address(this),
            "Owner can't claim contract's balance of its own tokens"
        );
        bool succ = IERC20(_tokenAddress).transfer(marketingWallet, _amount);
        require(succ, "Transfer failed");
        emit Log("We have recovered tokens from contract:", _amount);
    }

    //Final Dev notes, this code has been tested and audited, last update to code was done to re-add swapandliquify function to the transfer as option, is recommended to be used manually instead of automatic.
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"","type":"string"},{"indexed":false,"internalType":"address","name":"","type":"address"}],"name":"AuditLog","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"","type":"string"},{"indexed":false,"internalType":"uint256","name":"","type":"uint256"}],"name":"Log","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"RewardLiquidityProviders","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amountIn","type":"uint256"},{"indexed":false,"internalType":"address[]","name":"path","type":"address[]"}],"name":"SwapETHForTokens","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amountIn","type":"uint256"},{"indexed":false,"internalType":"address[]","name":"path","type":"address[]"}],"name":"SwapTokensForETH","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"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":"buyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"inSwapAndLiquify","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","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":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingTokensCollected","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minimumTokensBeforeSwap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"recoverETHfromContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenAddress","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"recoverTokensFromContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revenueFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"revenueWallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_marketingWallet","type":"address"}],"name":"setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_revenueWallet","type":"address"}],"name":"setRevenueWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_minimumTokensBeforeSwap","type":"uint256"}],"name":"setTokensToSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquify","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapOutput","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMarketingTokensCollected","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"}]

60e06040526a52b7d2dcc80cd2e400000060045573d335c5e36f1b19aece98b78e9827a9df76ee29e6600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073e4eec0c7e825f988aeee7d05be579519532e94e5600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600460085560046009556001600a556003600b556000600c556000600d5569021e19e0c9bab2400000600e556000600f556001601060016101000a81548160ff0219169083151502179055503480156200011657600080fd5b50620001376200012b6200066560201b60201c565b6200066d60201b60201c565b600454600160006200014e6200066560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600060384603620001b4577310ed43c718714eb63d5aa57b78b54704e256024e90506200031e565b60614603620001da5773d99d1c33f9fc3444f8101754abc46c52416550d190506200031d565b61a86a460362000201577360ae616a2155ee3d9a68541ba4544862310933d490506200031c565b60894603620002275773a5e0829caced8ffdd4de3c43696c57f7d7a678ff90506200031b565b6117b246036200024e57734169db906fcbfb8b12dbd20d98850aee05b7d88990506200031a565b60fa4603620002745773f491e7b69e4244ad4002bc14e878a34207e38c29905062000319565b61a4b146036200029b57731b02da8cb0d097eb8d57a175b88c7d8b47997506905062000318565b6001461480620002ab5750600446145b80620002b75750600546145b15620002da57737a250d5630b4cf539739df2c5dacb4c659f2488d905062000317565b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200030e90620007bb565b60405180910390fd5b5b5b5b5b5b5b5b60008190508073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200036f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000395919062000847565b73ffffffffffffffffffffffffffffffffffffffff1660c08173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000414573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200043a919062000847565b73ffffffffffffffffffffffffffffffffffffffff1663c9c653963060c0516040518363ffffffff1660e01b8152600401620004789291906200088a565b6020604051808303816000875af115801562000498573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004be919062000847565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250506001600360006200053b6200073160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620005f46200066560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600454604051620006559190620008d2565b60405180910390a35050620008ef565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600082825260208201905092915050565b7f596f75277265206e6f7420426c61646500000000000000000000000000000000600082015250565b6000620007a36010836200075a565b9150620007b0826200076b565b602082019050919050565b60006020820190508181036000830152620007d68162000794565b9050919050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200080f82620007e2565b9050919050565b620008218162000802565b81146200082d57600080fd5b50565b600081519050620008418162000816565b92915050565b60006020828403121562000860576200085f620007dd565b5b6000620008708482850162000830565b91505092915050565b620008848162000802565b82525050565b6000604082019050620008a1600083018562000879565b620008b0602083018462000879565b9392505050565b6000819050919050565b620008cc81620008b7565b82525050565b6000602082019050620008e96000830184620008c1565b92915050565b60805160a05160c0516137ad620009426000396000611f6d015260008181610ccb01528181611b1801528181611b980152611c5f01526000818161096a01528181611fe0015261200701526137ad6000f3fe6080604052600436106102345760003560e01c80635eaa82471161012e578063a9059cbb116100ab578063dd62ed3e1161006f578063dd62ed3e14610830578063e6be4a721461086d578063ea2f0b3714610896578063f2fde38b146108bf578063fb235f34146108e85761023b565b8063a9059cbb14610771578063b29ad50a146107ae578063c49b9a80146107c5578063ce831ed5146107ee578063d2d7ad83146108055761023b565b806375f0a874116100f257806375f0a8741461068857806385141a77146106b35780638da5cb5b146106de57806395d89b4114610709578063a457c2d7146107345761023b565b80635eaa8247146105b35780636b67c4df146105de5780636ca60bc61461060957806370a0823114610634578063715018a6146106715761023b565b806339509351116101bc578063470624021161018057806347062402146104cc57806349bd5a5e146104f75780634a74bb02146105225780635342acb41461054d5780635d098b381461058a5761023b565b806339509351146103e75780634076350314610424578063437823ec1461044f5780634447842514610478578063461d9476146104a35761023b565b8063220f669611610203578063220f6696146102fe57806323b872dd146103295780632b14ca5614610366578063313ce5671461039157806336e4ec64146103bc5761023b565b806306fdde0314610240578063095ea7b31461026b5780631694505e146102a857806318160ddd146102d35761023b565b3661023b57005b600080fd5b34801561024c57600080fd5b50610255610911565b6040516102629190612337565b60405180910390f35b34801561027757600080fd5b50610292600480360381019061028d91906123f2565b61094a565b60405161029f919061244d565b60405180910390f35b3480156102b457600080fd5b506102bd610968565b6040516102ca91906124c7565b60405180910390f35b3480156102df57600080fd5b506102e861098c565b6040516102f591906124f1565b60405180910390f35b34801561030a57600080fd5b50610313610996565b604051610320919061244d565b60405180910390f35b34801561033557600080fd5b50610350600480360381019061034b919061250c565b6109a9565b60405161035d919061244d565b60405180910390f35b34801561037257600080fd5b5061037b610aa9565b60405161038891906124f1565b60405180910390f35b34801561039d57600080fd5b506103a6610aaf565b6040516103b3919061257b565b60405180910390f35b3480156103c857600080fd5b506103d1610ab4565b6040516103de91906124f1565b60405180910390f35b3480156103f357600080fd5b5061040e600480360381019061040991906123f2565b610aba565b60405161041b919061244d565b60405180910390f35b34801561043057600080fd5b50610439610b66565b60405161044691906124f1565b60405180910390f35b34801561045b57600080fd5b5061047660048036038101906104719190612596565b610b6c565b005b34801561048457600080fd5b5061048d610c06565b60405161049a91906125e4565b60405180910390f35b3480156104af57600080fd5b506104ca60048036038101906104c591906125ff565b610c2c565b005b3480156104d857600080fd5b506104e1610cc3565b6040516104ee91906124f1565b60405180910390f35b34801561050357600080fd5b5061050c610cc9565b604051610519919061263b565b60405180910390f35b34801561052e57600080fd5b50610537610ced565b604051610544919061244d565b60405180910390f35b34801561055957600080fd5b50610574600480360381019061056f9190612596565b610d00565b604051610581919061244d565b60405180910390f35b34801561059657600080fd5b506105b160048036038101906105ac9190612596565b610d56565b005b3480156105bf57600080fd5b506105c8610e6a565b6040516105d591906124f1565b60405180910390f35b3480156105ea57600080fd5b506105f3610e70565b60405161060091906124f1565b60405180910390f35b34801561061557600080fd5b5061061e610e76565b60405161062b91906124f1565b60405180910390f35b34801561064057600080fd5b5061065b60048036038101906106569190612596565b610e7c565b60405161066891906124f1565b60405180910390f35b34801561067d57600080fd5b50610686610ec5565b005b34801561069457600080fd5b5061069d610ed9565b6040516106aa91906125e4565b60405180910390f35b3480156106bf57600080fd5b506106c8610eff565b6040516106d5919061263b565b60405180910390f35b3480156106ea57600080fd5b506106f3610f05565b604051610700919061263b565b60405180910390f35b34801561071557600080fd5b5061071e610f2e565b60405161072b9190612337565b60405180910390f35b34801561074057600080fd5b5061075b600480360381019061075691906123f2565b610f67565b604051610768919061244d565b60405180910390f35b34801561077d57600080fd5b50610798600480360381019061079391906123f2565b611013565b6040516107a5919061244d565b60405180910390f35b3480156107ba57600080fd5b506107c3611031565b005b3480156107d157600080fd5b506107ec60048036038101906107e79190612682565b611134565b005b3480156107fa57600080fd5b506108036111e5565b005b34801561081157600080fd5b5061081a61131d565b60405161082791906124f1565b60405180910390f35b34801561083c57600080fd5b50610857600480360381019061085291906126af565b611323565b60405161086491906124f1565b60405180910390f35b34801561087957600080fd5b50610894600480360381019061088f91906123f2565b6113aa565b005b3480156108a257600080fd5b506108bd60048036038101906108b89190612596565b611540565b005b3480156108cb57600080fd5b506108e660048036038101906108e19190612596565b6115da565b005b3480156108f457600080fd5b5061090f600480360381019061090a9190612596565b61165d565b005b6040518060400160405280600681526020017f4e6f64654149000000000000000000000000000000000000000000000000000081525081565b600061095e610957611771565b8484611779565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600454905090565b601060009054906101000a900460ff1681565b600080600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006109f5611771565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610a75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6c90612761565b60405180910390fd5b610a80858585611942565b610a9d85610a8c611771565b8584610a9891906127b0565b611779565b60019150509392505050565b60095481565b601281565b600a5481565b6000610b5c610ac7611771565b848460026000610ad5611771565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610b5791906127e4565b611779565b6001905092915050565b600d5481565b610b74611d8c565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f025dbd6ad989fe1a64db7dc049e29723ff9d35a97d84ae9aab96196f00ec1a0081604051610bfb919061288a565b60405180910390a150565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610c34611d8c565b68056bc75e2d63100000811015610c80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c779061292a565b60405180910390fd5b80600e819055507fdd970dd9b5bfe707922155b058a407655cb18288b807e2216442bca8ad83d6b5600e54604051610cb891906129bc565b60405180910390a150565b60085481565b7f000000000000000000000000000000000000000000000000000000000000000081565b601060019054906101000a900460ff1681565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610d5e611d8c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610dcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc490612a36565b60405180910390fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f025dbd6ad989fe1a64db7dc049e29723ff9d35a97d84ae9aab96196f00ec1a00600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16604051610e5f9190612ae9565b60405180910390a150565b600f5481565b600b5481565b600c5481565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ecd611d8c565b610ed76000611e0a565b565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61dead81565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6040518060400160405280600381526020017f475055000000000000000000000000000000000000000000000000000000000081525081565b6000611009610f74611771565b848460026000610f82611771565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461100491906127b0565b611779565b6001905092915050565b6000611027611020611771565b8484611942565b6001905092915050565b6001601060006101000a81548160ff021916908315150217905550600061105730610e7c565b905061106281611ece565b60004790506000600b54600a5461107991906127e4565b90506000810361108857600190505b600081600a54846110999190612b17565b6110a39190612b88565b905080836110b191906127b0565b92506110df600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16826120d6565b61110b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846120d6565b6000600c81905550505050506000601060006101000a81548160ff021916908315150217905550565b61113c611d8c565b801515601060019054906101000a900460ff16151503611191576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118890612c05565b60405180910390fd5b80601060016101000a81548160ff0219169083151502179055507f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc159816040516111da919061244d565b60405180910390a150565b6111ed611d8c565b60004790506000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161123a90612c56565b60006040518083038185875af1925050503d8060008114611277576040519150601f19603f3d011682016040523d82523d6000602084013e61127c565b606091505b50509050806112c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b790612cb7565b60405180910390fd5b7f025dbd6ad989fe1a64db7dc049e29723ff9d35a97d84ae9aab96196f00ec1a00600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040516113119190612d49565b60405180910390a15050565b600e5481565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6113b2611d8c565b3073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611420576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141790612de9565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846040518363ffffffff1660e01b815260040161147f929190612e09565b6020604051808303816000875af115801561149e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114c29190612e47565b905080611504576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fb90612cb7565b60405180910390fd5b7fdd970dd9b5bfe707922155b058a407655cb18288b807e2216442bca8ad83d6b5826040516115339190612ee6565b60405180910390a1505050565b611548611d8c565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f025dbd6ad989fe1a64db7dc049e29723ff9d35a97d84ae9aab96196f00ec1a00816040516115cf9190612f86565b60405180910390a150565b6115e2611d8c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611651576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164890613026565b60405180910390fd5b61165a81611e0a565b50565b611665611d8c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036116d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116cb90613092565b60405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f025dbd6ad989fe1a64db7dc049e29723ff9d35a97d84ae9aab96196f00ec1a00600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040516117669190613124565b60405180910390a150565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036117e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117df906131c4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611857576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184e90613256565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161193591906124f1565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036119b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a8906132e8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a179061337a565b60405180910390fd5b60008111611a63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5a9061340c565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015611ae5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611adc9061349e565b60405180910390fd5b6000611af030610e7c565b90506000600e5482101590506000601060009054906101000a900460ff16158015611b6757507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614155b8015611b705750815b8015611b885750601060019054906101000a900460ff165b15611b9657611b95611031565b5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148015611c3b5750600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611c5d57606484600954611c509190612b17565b611c5a9190612b88565b90505b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff16148015611d025750600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611d2457606484600854611d179190612b17565b611d219190612b88565b90505b8084611d3091906127b0565b93506000811115611d7957611d46863083612191565b80600c6000828254611d5891906127e4565b9250508190555080600d6000828254611d7191906127e4565b925050819055505b611d84868686612191565b505050505050565b611d94611771565b73ffffffffffffffffffffffffffffffffffffffff16611db2610f05565b73ffffffffffffffffffffffffffffffffffffffff1614611e08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dff9061350a565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600267ffffffffffffffff811115611eeb57611eea61352a565b5b604051908082528060200260200182016040528015611f195781602001602082028036833780820191505090505b5090503081600081518110611f3157611f30613559565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000081600181518110611fa057611f9f613559565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612005307f000000000000000000000000000000000000000000000000000000000000000084611779565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401612067959493929190613681565b600060405180830381600087803b15801561208157600080fd5b505af1158015612095573d6000803e3d6000fd5b505050507f32cde87eb454f3a0b875ab23547023107cfad454363ec88ba5695e2c24aa52a782826040516120ca9291906136db565b60405180910390a15050565b600081031561218d5760008273ffffffffffffffffffffffffffffffffffffffff168260405161210590612c56565b60006040518083038185875af1925050503d8060008114612142576040519150601f19603f3d011682016040523d82523d6000602084013e612147565b606091505b505090508061218b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218290613757565b60405180910390fd5b505b5050565b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121e091906127b0565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461223691906127e4565b925050819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161229a91906124f1565b60405180910390a3505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156122e15780820151818401526020810190506122c6565b60008484015250505050565b6000601f19601f8301169050919050565b6000612309826122a7565b61231381856122b2565b93506123238185602086016122c3565b61232c816122ed565b840191505092915050565b6000602082019050818103600083015261235181846122fe565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006123898261235e565b9050919050565b6123998161237e565b81146123a457600080fd5b50565b6000813590506123b681612390565b92915050565b6000819050919050565b6123cf816123bc565b81146123da57600080fd5b50565b6000813590506123ec816123c6565b92915050565b6000806040838503121561240957612408612359565b5b6000612417858286016123a7565b9250506020612428858286016123dd565b9150509250929050565b60008115159050919050565b61244781612432565b82525050565b6000602082019050612462600083018461243e565b92915050565b6000819050919050565b600061248d6124886124838461235e565b612468565b61235e565b9050919050565b600061249f82612472565b9050919050565b60006124b182612494565b9050919050565b6124c1816124a6565b82525050565b60006020820190506124dc60008301846124b8565b92915050565b6124eb816123bc565b82525050565b600060208201905061250660008301846124e2565b92915050565b60008060006060848603121561252557612524612359565b5b6000612533868287016123a7565b9350506020612544868287016123a7565b9250506040612555868287016123dd565b9150509250925092565b600060ff82169050919050565b6125758161255f565b82525050565b6000602082019050612590600083018461256c565b92915050565b6000602082840312156125ac576125ab612359565b5b60006125ba848285016123a7565b91505092915050565b60006125ce8261235e565b9050919050565b6125de816125c3565b82525050565b60006020820190506125f960008301846125d5565b92915050565b60006020828403121561261557612614612359565b5b6000612623848285016123dd565b91505092915050565b6126358161237e565b82525050565b6000602082019050612650600083018461262c565b92915050565b61265f81612432565b811461266a57600080fd5b50565b60008135905061267c81612656565b92915050565b60006020828403121561269857612697612359565b5b60006126a68482850161266d565b91505092915050565b600080604083850312156126c6576126c5612359565b5b60006126d4858286016123a7565b92505060206126e5858286016123a7565b9150509250929050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b600061274b6028836122b2565b9150612756826126ef565b604082019050919050565b6000602082019050818103600083015261277a8161273e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006127bb826123bc565b91506127c6836123bc565b92508282039050818111156127de576127dd612781565b5b92915050565b60006127ef826123bc565b91506127fa836123bc565b925082820190508082111561281257612811612781565b5b92915050565b7f57652068617665206578636c756465642074686520666f6c6c6f77696e67207760008201527f616c6c656420696e20666565733a000000000000000000000000000000000000602082015250565b6000612874602e836122b2565b915061287f82612818565b604082019050919050565b600060408201905081810360008301526128a381612867565b90506128b2602083018461262c565b92915050565b7f596f75206e65656420746f20656e746572206d6f7265207468616e203130302060008201527f746f6b656e732e00000000000000000000000000000000000000000000000000602082015250565b60006129146027836122b2565b915061291f826128b8565b604082019050919050565b6000602082019050818103600083015261294381612907565b9050919050565b7f576520686176652075706461746564206d696e696d756e546f6b656e7342656660008201527f6f72655377617020746f3a000000000000000000000000000000000000000000602082015250565b60006129a6602b836122b2565b91506129b18261294a565b604082019050919050565b600060408201905081810360008301526129d581612999565b90506129e460208301846124e2565b92915050565b7f7365744d61726b6574696e6757616c6c65743a205a45524f0000000000000000600082015250565b6000612a206018836122b2565b9150612a2b826129ea565b602082019050919050565b60006020820190508181036000830152612a4f81612a13565b9050919050565b7f57652068617665205570646174656420746865204d61726b6574696e6757616c60008201527f6c65743a00000000000000000000000000000000000000000000000000000000602082015250565b6000612ab26024836122b2565b9150612abd82612a56565b604082019050919050565b6000612ad382612494565b9050919050565b612ae381612ac8565b82525050565b60006040820190508181036000830152612b0281612aa5565b9050612b116020830184612ada565b92915050565b6000612b22826123bc565b9150612b2d836123bc565b9250828202612b3b816123bc565b91508282048414831517612b5257612b51612781565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612b93826123bc565b9150612b9e836123bc565b925082612bae57612bad612b59565b5b828204905092915050565b7f56616c756520616c726561647920736574000000000000000000000000000000600082015250565b6000612bef6011836122b2565b9150612bfa82612bb9565b602082019050919050565b60006020820190508181036000830152612c1e81612be2565b9050919050565b600081905092915050565b50565b6000612c40600083612c25565b9150612c4b82612c30565b600082019050919050565b6000612c6182612c33565b9150819050919050565b7f5472616e73666572206661696c65640000000000000000000000000000000000600082015250565b6000612ca1600f836122b2565b9150612cac82612c6b565b602082019050919050565b60006020820190508181036000830152612cd081612c94565b9050919050565b7f57652068617665207265636f766572207468652073746f636b2065746820667260008201527f6f6d20636f6e74726163742e0000000000000000000000000000000000000000602082015250565b6000612d33602c836122b2565b9150612d3e82612cd7565b604082019050919050565b60006040820190508181036000830152612d6281612d26565b9050612d716020830184612ada565b92915050565b7f4f776e65722063616e277420636c61696d20636f6e747261637427732062616c60008201527f616e6365206f6620697473206f776e20746f6b656e7300000000000000000000602082015250565b6000612dd36036836122b2565b9150612dde82612d77565b604082019050919050565b60006020820190508181036000830152612e0281612dc6565b9050919050565b6000604082019050612e1e6000830185612ada565b612e2b60208301846124e2565b9392505050565b600081519050612e4181612656565b92915050565b600060208284031215612e5d57612e5c612359565b5b6000612e6b84828501612e32565b91505092915050565b7f57652068617665207265636f766572656420746f6b656e732066726f6d20636f60008201527f6e74726163743a00000000000000000000000000000000000000000000000000602082015250565b6000612ed06027836122b2565b9150612edb82612e74565b604082019050919050565b60006040820190508181036000830152612eff81612ec3565b9050612f0e60208301846124e2565b92915050565b7f5765206861766520696e636c7564696e672074686520666f6c6c6f77696e672060008201527f77616c6c656420696e20666565733a0000000000000000000000000000000000602082015250565b6000612f70602f836122b2565b9150612f7b82612f14565b604082019050919050565b60006040820190508181036000830152612f9f81612f63565b9050612fae602083018461262c565b92915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006130106026836122b2565b915061301b82612fb4565b604082019050919050565b6000602082019050818103600083015261303f81613003565b9050919050565b7f736574526576656e756557616c6c65743a205a45524f00000000000000000000600082015250565b600061307c6016836122b2565b915061308782613046565b602082019050919050565b600060208201905081810360008301526130ab8161306f565b9050919050565b7f57652068617665205570646174656420746865205261726b6574696e6757616c60008201527f6c65743a00000000000000000000000000000000000000000000000000000000602082015250565b600061310e6024836122b2565b9150613119826130b2565b604082019050919050565b6000604082019050818103600083015261313d81613101565b905061314c6020830184612ada565b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006131ae6024836122b2565b91506131b982613152565b604082019050919050565b600060208201905081810360008301526131dd816131a1565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006132406022836122b2565b915061324b826131e4565b604082019050919050565b6000602082019050818103600083015261326f81613233565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006132d26025836122b2565b91506132dd82613276565b604082019050919050565b60006020820190508181036000830152613301816132c5565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006133646023836122b2565b915061336f82613308565b604082019050919050565b6000602082019050818103600083015261339381613357565b9050919050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b60006133f66029836122b2565b91506134018261339a565b604082019050919050565b60006020820190508181036000830152613425816133e9565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006134886026836122b2565b91506134938261342c565b604082019050919050565b600060208201905081810360008301526134b78161347b565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006134f46020836122b2565b91506134ff826134be565b602082019050919050565b60006020820190508181036000830152613523816134e7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b60006135ad6135a86135a384613588565b612468565b6123bc565b9050919050565b6135bd81613592565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6135f88161237e565b82525050565b600061360a83836135ef565b60208301905092915050565b6000602082019050919050565b600061362e826135c3565b61363881856135ce565b9350613643836135df565b8060005b8381101561367457815161365b88826135fe565b975061366683613616565b925050600181019050613647565b5085935050505092915050565b600060a08201905061369660008301886124e2565b6136a360208301876135b4565b81810360408301526136b58186613623565b90506136c4606083018561262c565b6136d160808301846124e2565b9695505050505050565b60006040820190506136f060008301856124e2565b81810360208301526137028184613623565b90509392505050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b60006137416010836122b2565b915061374c8261370b565b602082019050919050565b6000602082019050818103600083015261377081613734565b905091905056fea2646970667358221220d27eecf47fd26e1a172780e5093d395abe48026a3c958d00d71fe3f1ec7d277b64736f6c63430008130033

Deployed Bytecode

0x6080604052600436106102345760003560e01c80635eaa82471161012e578063a9059cbb116100ab578063dd62ed3e1161006f578063dd62ed3e14610830578063e6be4a721461086d578063ea2f0b3714610896578063f2fde38b146108bf578063fb235f34146108e85761023b565b8063a9059cbb14610771578063b29ad50a146107ae578063c49b9a80146107c5578063ce831ed5146107ee578063d2d7ad83146108055761023b565b806375f0a874116100f257806375f0a8741461068857806385141a77146106b35780638da5cb5b146106de57806395d89b4114610709578063a457c2d7146107345761023b565b80635eaa8247146105b35780636b67c4df146105de5780636ca60bc61461060957806370a0823114610634578063715018a6146106715761023b565b806339509351116101bc578063470624021161018057806347062402146104cc57806349bd5a5e146104f75780634a74bb02146105225780635342acb41461054d5780635d098b381461058a5761023b565b806339509351146103e75780634076350314610424578063437823ec1461044f5780634447842514610478578063461d9476146104a35761023b565b8063220f669611610203578063220f6696146102fe57806323b872dd146103295780632b14ca5614610366578063313ce5671461039157806336e4ec64146103bc5761023b565b806306fdde0314610240578063095ea7b31461026b5780631694505e146102a857806318160ddd146102d35761023b565b3661023b57005b600080fd5b34801561024c57600080fd5b50610255610911565b6040516102629190612337565b60405180910390f35b34801561027757600080fd5b50610292600480360381019061028d91906123f2565b61094a565b60405161029f919061244d565b60405180910390f35b3480156102b457600080fd5b506102bd610968565b6040516102ca91906124c7565b60405180910390f35b3480156102df57600080fd5b506102e861098c565b6040516102f591906124f1565b60405180910390f35b34801561030a57600080fd5b50610313610996565b604051610320919061244d565b60405180910390f35b34801561033557600080fd5b50610350600480360381019061034b919061250c565b6109a9565b60405161035d919061244d565b60405180910390f35b34801561037257600080fd5b5061037b610aa9565b60405161038891906124f1565b60405180910390f35b34801561039d57600080fd5b506103a6610aaf565b6040516103b3919061257b565b60405180910390f35b3480156103c857600080fd5b506103d1610ab4565b6040516103de91906124f1565b60405180910390f35b3480156103f357600080fd5b5061040e600480360381019061040991906123f2565b610aba565b60405161041b919061244d565b60405180910390f35b34801561043057600080fd5b50610439610b66565b60405161044691906124f1565b60405180910390f35b34801561045b57600080fd5b5061047660048036038101906104719190612596565b610b6c565b005b34801561048457600080fd5b5061048d610c06565b60405161049a91906125e4565b60405180910390f35b3480156104af57600080fd5b506104ca60048036038101906104c591906125ff565b610c2c565b005b3480156104d857600080fd5b506104e1610cc3565b6040516104ee91906124f1565b60405180910390f35b34801561050357600080fd5b5061050c610cc9565b604051610519919061263b565b60405180910390f35b34801561052e57600080fd5b50610537610ced565b604051610544919061244d565b60405180910390f35b34801561055957600080fd5b50610574600480360381019061056f9190612596565b610d00565b604051610581919061244d565b60405180910390f35b34801561059657600080fd5b506105b160048036038101906105ac9190612596565b610d56565b005b3480156105bf57600080fd5b506105c8610e6a565b6040516105d591906124f1565b60405180910390f35b3480156105ea57600080fd5b506105f3610e70565b60405161060091906124f1565b60405180910390f35b34801561061557600080fd5b5061061e610e76565b60405161062b91906124f1565b60405180910390f35b34801561064057600080fd5b5061065b60048036038101906106569190612596565b610e7c565b60405161066891906124f1565b60405180910390f35b34801561067d57600080fd5b50610686610ec5565b005b34801561069457600080fd5b5061069d610ed9565b6040516106aa91906125e4565b60405180910390f35b3480156106bf57600080fd5b506106c8610eff565b6040516106d5919061263b565b60405180910390f35b3480156106ea57600080fd5b506106f3610f05565b604051610700919061263b565b60405180910390f35b34801561071557600080fd5b5061071e610f2e565b60405161072b9190612337565b60405180910390f35b34801561074057600080fd5b5061075b600480360381019061075691906123f2565b610f67565b604051610768919061244d565b60405180910390f35b34801561077d57600080fd5b50610798600480360381019061079391906123f2565b611013565b6040516107a5919061244d565b60405180910390f35b3480156107ba57600080fd5b506107c3611031565b005b3480156107d157600080fd5b506107ec60048036038101906107e79190612682565b611134565b005b3480156107fa57600080fd5b506108036111e5565b005b34801561081157600080fd5b5061081a61131d565b60405161082791906124f1565b60405180910390f35b34801561083c57600080fd5b50610857600480360381019061085291906126af565b611323565b60405161086491906124f1565b60405180910390f35b34801561087957600080fd5b50610894600480360381019061088f91906123f2565b6113aa565b005b3480156108a257600080fd5b506108bd60048036038101906108b89190612596565b611540565b005b3480156108cb57600080fd5b506108e660048036038101906108e19190612596565b6115da565b005b3480156108f457600080fd5b5061090f600480360381019061090a9190612596565b61165d565b005b6040518060400160405280600681526020017f4e6f64654149000000000000000000000000000000000000000000000000000081525081565b600061095e610957611771565b8484611779565b6001905092915050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600454905090565b601060009054906101000a900460ff1681565b600080600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006109f5611771565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610a75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6c90612761565b60405180910390fd5b610a80858585611942565b610a9d85610a8c611771565b8584610a9891906127b0565b611779565b60019150509392505050565b60095481565b601281565b600a5481565b6000610b5c610ac7611771565b848460026000610ad5611771565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610b5791906127e4565b611779565b6001905092915050565b600d5481565b610b74611d8c565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f025dbd6ad989fe1a64db7dc049e29723ff9d35a97d84ae9aab96196f00ec1a0081604051610bfb919061288a565b60405180910390a150565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610c34611d8c565b68056bc75e2d63100000811015610c80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c779061292a565b60405180910390fd5b80600e819055507fdd970dd9b5bfe707922155b058a407655cb18288b807e2216442bca8ad83d6b5600e54604051610cb891906129bc565b60405180910390a150565b60085481565b7f000000000000000000000000769f539486b31ef310125c44d7f405c6d470cd1f81565b601060019054906101000a900460ff1681565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610d5e611d8c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610dcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc490612a36565b60405180910390fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f025dbd6ad989fe1a64db7dc049e29723ff9d35a97d84ae9aab96196f00ec1a00600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16604051610e5f9190612ae9565b60405180910390a150565b600f5481565b600b5481565b600c5481565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ecd611d8c565b610ed76000611e0a565b565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61dead81565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6040518060400160405280600381526020017f475055000000000000000000000000000000000000000000000000000000000081525081565b6000611009610f74611771565b848460026000610f82611771565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461100491906127b0565b611779565b6001905092915050565b6000611027611020611771565b8484611942565b6001905092915050565b6001601060006101000a81548160ff021916908315150217905550600061105730610e7c565b905061106281611ece565b60004790506000600b54600a5461107991906127e4565b90506000810361108857600190505b600081600a54846110999190612b17565b6110a39190612b88565b905080836110b191906127b0565b92506110df600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16826120d6565b61110b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846120d6565b6000600c81905550505050506000601060006101000a81548160ff021916908315150217905550565b61113c611d8c565b801515601060019054906101000a900460ff16151503611191576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118890612c05565b60405180910390fd5b80601060016101000a81548160ff0219169083151502179055507f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc159816040516111da919061244d565b60405180910390a150565b6111ed611d8c565b60004790506000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161123a90612c56565b60006040518083038185875af1925050503d8060008114611277576040519150601f19603f3d011682016040523d82523d6000602084013e61127c565b606091505b50509050806112c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b790612cb7565b60405180910390fd5b7f025dbd6ad989fe1a64db7dc049e29723ff9d35a97d84ae9aab96196f00ec1a00600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040516113119190612d49565b60405180910390a15050565b600e5481565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6113b2611d8c565b3073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611420576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141790612de9565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846040518363ffffffff1660e01b815260040161147f929190612e09565b6020604051808303816000875af115801561149e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114c29190612e47565b905080611504576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fb90612cb7565b60405180910390fd5b7fdd970dd9b5bfe707922155b058a407655cb18288b807e2216442bca8ad83d6b5826040516115339190612ee6565b60405180910390a1505050565b611548611d8c565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f025dbd6ad989fe1a64db7dc049e29723ff9d35a97d84ae9aab96196f00ec1a00816040516115cf9190612f86565b60405180910390a150565b6115e2611d8c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611651576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164890613026565b60405180910390fd5b61165a81611e0a565b50565b611665611d8c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036116d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116cb90613092565b60405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f025dbd6ad989fe1a64db7dc049e29723ff9d35a97d84ae9aab96196f00ec1a00600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040516117669190613124565b60405180910390a150565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036117e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117df906131c4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611857576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184e90613256565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161193591906124f1565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036119b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a8906132e8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a179061337a565b60405180910390fd5b60008111611a63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5a9061340c565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015611ae5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611adc9061349e565b60405180910390fd5b6000611af030610e7c565b90506000600e5482101590506000601060009054906101000a900460ff16158015611b6757507f000000000000000000000000769f539486b31ef310125c44d7f405c6d470cd1f73ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614155b8015611b705750815b8015611b885750601060019054906101000a900460ff165b15611b9657611b95611031565b5b7f000000000000000000000000769f539486b31ef310125c44d7f405c6d470cd1f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148015611c3b5750600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611c5d57606484600954611c509190612b17565b611c5a9190612b88565b90505b7f000000000000000000000000769f539486b31ef310125c44d7f405c6d470cd1f73ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff16148015611d025750600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611d2457606484600854611d179190612b17565b611d219190612b88565b90505b8084611d3091906127b0565b93506000811115611d7957611d46863083612191565b80600c6000828254611d5891906127e4565b9250508190555080600d6000828254611d7191906127e4565b925050819055505b611d84868686612191565b505050505050565b611d94611771565b73ffffffffffffffffffffffffffffffffffffffff16611db2610f05565b73ffffffffffffffffffffffffffffffffffffffff1614611e08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dff9061350a565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600267ffffffffffffffff811115611eeb57611eea61352a565b5b604051908082528060200260200182016040528015611f195781602001602082028036833780820191505090505b5090503081600081518110611f3157611f30613559565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281600181518110611fa057611f9f613559565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612005307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611779565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401612067959493929190613681565b600060405180830381600087803b15801561208157600080fd5b505af1158015612095573d6000803e3d6000fd5b505050507f32cde87eb454f3a0b875ab23547023107cfad454363ec88ba5695e2c24aa52a782826040516120ca9291906136db565b60405180910390a15050565b600081031561218d5760008273ffffffffffffffffffffffffffffffffffffffff168260405161210590612c56565b60006040518083038185875af1925050503d8060008114612142576040519150601f19603f3d011682016040523d82523d6000602084013e612147565b606091505b505090508061218b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218290613757565b60405180910390fd5b505b5050565b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121e091906127b0565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461223691906127e4565b925050819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161229a91906124f1565b60405180910390a3505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156122e15780820151818401526020810190506122c6565b60008484015250505050565b6000601f19601f8301169050919050565b6000612309826122a7565b61231381856122b2565b93506123238185602086016122c3565b61232c816122ed565b840191505092915050565b6000602082019050818103600083015261235181846122fe565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006123898261235e565b9050919050565b6123998161237e565b81146123a457600080fd5b50565b6000813590506123b681612390565b92915050565b6000819050919050565b6123cf816123bc565b81146123da57600080fd5b50565b6000813590506123ec816123c6565b92915050565b6000806040838503121561240957612408612359565b5b6000612417858286016123a7565b9250506020612428858286016123dd565b9150509250929050565b60008115159050919050565b61244781612432565b82525050565b6000602082019050612462600083018461243e565b92915050565b6000819050919050565b600061248d6124886124838461235e565b612468565b61235e565b9050919050565b600061249f82612472565b9050919050565b60006124b182612494565b9050919050565b6124c1816124a6565b82525050565b60006020820190506124dc60008301846124b8565b92915050565b6124eb816123bc565b82525050565b600060208201905061250660008301846124e2565b92915050565b60008060006060848603121561252557612524612359565b5b6000612533868287016123a7565b9350506020612544868287016123a7565b9250506040612555868287016123dd565b9150509250925092565b600060ff82169050919050565b6125758161255f565b82525050565b6000602082019050612590600083018461256c565b92915050565b6000602082840312156125ac576125ab612359565b5b60006125ba848285016123a7565b91505092915050565b60006125ce8261235e565b9050919050565b6125de816125c3565b82525050565b60006020820190506125f960008301846125d5565b92915050565b60006020828403121561261557612614612359565b5b6000612623848285016123dd565b91505092915050565b6126358161237e565b82525050565b6000602082019050612650600083018461262c565b92915050565b61265f81612432565b811461266a57600080fd5b50565b60008135905061267c81612656565b92915050565b60006020828403121561269857612697612359565b5b60006126a68482850161266d565b91505092915050565b600080604083850312156126c6576126c5612359565b5b60006126d4858286016123a7565b92505060206126e5858286016123a7565b9150509250929050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b600061274b6028836122b2565b9150612756826126ef565b604082019050919050565b6000602082019050818103600083015261277a8161273e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006127bb826123bc565b91506127c6836123bc565b92508282039050818111156127de576127dd612781565b5b92915050565b60006127ef826123bc565b91506127fa836123bc565b925082820190508082111561281257612811612781565b5b92915050565b7f57652068617665206578636c756465642074686520666f6c6c6f77696e67207760008201527f616c6c656420696e20666565733a000000000000000000000000000000000000602082015250565b6000612874602e836122b2565b915061287f82612818565b604082019050919050565b600060408201905081810360008301526128a381612867565b90506128b2602083018461262c565b92915050565b7f596f75206e65656420746f20656e746572206d6f7265207468616e203130302060008201527f746f6b656e732e00000000000000000000000000000000000000000000000000602082015250565b60006129146027836122b2565b915061291f826128b8565b604082019050919050565b6000602082019050818103600083015261294381612907565b9050919050565b7f576520686176652075706461746564206d696e696d756e546f6b656e7342656660008201527f6f72655377617020746f3a000000000000000000000000000000000000000000602082015250565b60006129a6602b836122b2565b91506129b18261294a565b604082019050919050565b600060408201905081810360008301526129d581612999565b90506129e460208301846124e2565b92915050565b7f7365744d61726b6574696e6757616c6c65743a205a45524f0000000000000000600082015250565b6000612a206018836122b2565b9150612a2b826129ea565b602082019050919050565b60006020820190508181036000830152612a4f81612a13565b9050919050565b7f57652068617665205570646174656420746865204d61726b6574696e6757616c60008201527f6c65743a00000000000000000000000000000000000000000000000000000000602082015250565b6000612ab26024836122b2565b9150612abd82612a56565b604082019050919050565b6000612ad382612494565b9050919050565b612ae381612ac8565b82525050565b60006040820190508181036000830152612b0281612aa5565b9050612b116020830184612ada565b92915050565b6000612b22826123bc565b9150612b2d836123bc565b9250828202612b3b816123bc565b91508282048414831517612b5257612b51612781565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612b93826123bc565b9150612b9e836123bc565b925082612bae57612bad612b59565b5b828204905092915050565b7f56616c756520616c726561647920736574000000000000000000000000000000600082015250565b6000612bef6011836122b2565b9150612bfa82612bb9565b602082019050919050565b60006020820190508181036000830152612c1e81612be2565b9050919050565b600081905092915050565b50565b6000612c40600083612c25565b9150612c4b82612c30565b600082019050919050565b6000612c6182612c33565b9150819050919050565b7f5472616e73666572206661696c65640000000000000000000000000000000000600082015250565b6000612ca1600f836122b2565b9150612cac82612c6b565b602082019050919050565b60006020820190508181036000830152612cd081612c94565b9050919050565b7f57652068617665207265636f766572207468652073746f636b2065746820667260008201527f6f6d20636f6e74726163742e0000000000000000000000000000000000000000602082015250565b6000612d33602c836122b2565b9150612d3e82612cd7565b604082019050919050565b60006040820190508181036000830152612d6281612d26565b9050612d716020830184612ada565b92915050565b7f4f776e65722063616e277420636c61696d20636f6e747261637427732062616c60008201527f616e6365206f6620697473206f776e20746f6b656e7300000000000000000000602082015250565b6000612dd36036836122b2565b9150612dde82612d77565b604082019050919050565b60006020820190508181036000830152612e0281612dc6565b9050919050565b6000604082019050612e1e6000830185612ada565b612e2b60208301846124e2565b9392505050565b600081519050612e4181612656565b92915050565b600060208284031215612e5d57612e5c612359565b5b6000612e6b84828501612e32565b91505092915050565b7f57652068617665207265636f766572656420746f6b656e732066726f6d20636f60008201527f6e74726163743a00000000000000000000000000000000000000000000000000602082015250565b6000612ed06027836122b2565b9150612edb82612e74565b604082019050919050565b60006040820190508181036000830152612eff81612ec3565b9050612f0e60208301846124e2565b92915050565b7f5765206861766520696e636c7564696e672074686520666f6c6c6f77696e672060008201527f77616c6c656420696e20666565733a0000000000000000000000000000000000602082015250565b6000612f70602f836122b2565b9150612f7b82612f14565b604082019050919050565b60006040820190508181036000830152612f9f81612f63565b9050612fae602083018461262c565b92915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006130106026836122b2565b915061301b82612fb4565b604082019050919050565b6000602082019050818103600083015261303f81613003565b9050919050565b7f736574526576656e756557616c6c65743a205a45524f00000000000000000000600082015250565b600061307c6016836122b2565b915061308782613046565b602082019050919050565b600060208201905081810360008301526130ab8161306f565b9050919050565b7f57652068617665205570646174656420746865205261726b6574696e6757616c60008201527f6c65743a00000000000000000000000000000000000000000000000000000000602082015250565b600061310e6024836122b2565b9150613119826130b2565b604082019050919050565b6000604082019050818103600083015261313d81613101565b905061314c6020830184612ada565b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006131ae6024836122b2565b91506131b982613152565b604082019050919050565b600060208201905081810360008301526131dd816131a1565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006132406022836122b2565b915061324b826131e4565b604082019050919050565b6000602082019050818103600083015261326f81613233565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006132d26025836122b2565b91506132dd82613276565b604082019050919050565b60006020820190508181036000830152613301816132c5565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006133646023836122b2565b915061336f82613308565b604082019050919050565b6000602082019050818103600083015261339381613357565b9050919050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b60006133f66029836122b2565b91506134018261339a565b604082019050919050565b60006020820190508181036000830152613425816133e9565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006134886026836122b2565b91506134938261342c565b604082019050919050565b600060208201905081810360008301526134b78161347b565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006134f46020836122b2565b91506134ff826134be565b602082019050919050565b60006020820190508181036000830152613523816134e7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b60006135ad6135a86135a384613588565b612468565b6123bc565b9050919050565b6135bd81613592565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6135f88161237e565b82525050565b600061360a83836135ef565b60208301905092915050565b6000602082019050919050565b600061362e826135c3565b61363881856135ce565b9350613643836135df565b8060005b8381101561367457815161365b88826135fe565b975061366683613616565b925050600181019050613647565b5085935050505092915050565b600060a08201905061369660008301886124e2565b6136a360208301876135b4565b81810360408301526136b58186613623565b90506136c4606083018561262c565b6136d160808301846124e2565b9695505050505050565b60006040820190506136f060008301856124e2565b81810360208301526137028184613623565b90509392505050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b60006137416010836122b2565b915061374c8261370b565b602082019050919050565b6000602082019050818103600083015261377081613734565b905091905056fea2646970667358221220d27eecf47fd26e1a172780e5093d395abe48026a3c958d00d71fe3f1ec7d277b64736f6c63430008130033

Deployed Bytecode Sourcemap

23513:14737:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24402:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28522:186;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25381:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27792:95;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25571:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28753:478;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24989:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24491:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25022:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29281:290;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25144:48;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34065:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24693:99;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34620:428;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24958:22;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25439:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25606:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33851:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35346:294;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25307:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25055:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25092:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27895:117;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13633:103;;;;;;;;;;;;;:::i;:::-;;24585:101;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24836:88;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12985:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24447:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29621:300;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28062:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32122:566;;;;;;;;;;;;;:::i;:::-;;35056:247;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37134:359;;;;;;;;;;;;;:::i;:::-;;25201:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28304:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37570:465;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34342:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13891:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35678:280;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24402:38;;;;;;;;;;;;;;;;;;;:::o;28522:186::-;28622:4;28639:39;28648:12;:10;:12::i;:::-;28662:7;28671:6;28639:8;:39::i;:::-;28696:4;28689:11;;28522:186;;;;:::o;25381:51::-;;;:::o;27792:95::-;27845:7;27872;;27865:14;;27792:95;:::o;25571:28::-;;;;;;;;;;;;;:::o;28753:478::-;28885:4;28902:21;28926:11;:19;28938:6;28926:19;;;;;;;;;;;;;;;:33;28946:12;:10;:12::i;:::-;28926:33;;;;;;;;;;;;;;;;28902:57;;29012:6;28992:16;:26;;28970:116;;;;;;;;;;;;:::i;:::-;;;;;;;;;29097:36;29107:6;29115:9;29126:6;29097:9;:36::i;:::-;29144:57;29153:6;29161:12;:10;:12::i;:::-;29194:6;29175:16;:25;;;;:::i;:::-;29144:8;:57::i;:::-;29219:4;29212:11;;;28753:478;;;;;:::o;24989:26::-;;;;:::o;24491:35::-;24524:2;24491:35;:::o;25022:26::-;;;;:::o;29281:290::-;29394:4;29411:130;29434:12;:10;:12::i;:::-;29461:7;29520:10;29483:11;:25;29495:12;:10;:12::i;:::-;29483:25;;;;;;;;;;;;;;;:34;29509:7;29483:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;29411:8;:130::i;:::-;29559:4;29552:11;;29281:290;;;;:::o;25144:48::-;;;;:::o;34065:233::-;12871:13;:11;:13::i;:::-;34166:4:::1;34136:18;:27;34155:7;34136:27;;;;;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;34186:104;34272:7;34186:104;;;;;;:::i;:::-;;;;;;;;34065:233:::0;:::o;24693:99::-;;;;;;;;;;;;;:::o;34620:428::-;12871:13;:11;:13::i;:::-;34775:9:::1;34747:24;:37;;34725:126;;;;;;;;;;;;:::i;:::-;;;;;;;;;34888:24;34862:23;:50;;;;34928:112;35006:23;;34928:112;;;;;;:::i;:::-;;;;;;;;34620:428:::0;:::o;24958:22::-;;;;:::o;25439:38::-;;;:::o;25606:40::-;;;;;;;;;;;;;:::o;33851:126::-;33918:4;33942:18;:27;33961:7;33942:27;;;;;;;;;;;;;;;;;;;;;;;;;33935:34;;33851:126;;;:::o;35346:294::-;12871:13;:11;:13::i;:::-;35466:1:::1;35438:30;;:16;:30;;::::0;35430:67:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;35534:16;35508:15;;:43;;;;;;;;;;;;;;;;;;35567:65;35616:15;;;;;;;;;;;35567:65;;;;;;:::i;:::-;;;;;;;;35346:294:::0;:::o;25307:29::-;;;;:::o;25055:28::-;;;;:::o;25092:43::-;;;;:::o;27895:117::-;27961:7;27988;:16;27996:7;27988:16;;;;;;;;;;;;;;;;27981:23;;27895:117;;;:::o;13633:103::-;12871:13;:11;:13::i;:::-;13698:30:::1;13725:1;13698:18;:30::i;:::-;13633:103::o:0;24585:101::-;;;;;;;;;;;;;:::o;24836:88::-;24882:42;24836:88;:::o;12985:87::-;13031:7;13058:6;;;;;;;;;;;13051:13;;12985:87;:::o;24447:37::-;;;;;;;;;;;;;;;;;;;:::o;29621:300::-;29739:4;29756:135;29779:12;:10;:12::i;:::-;29806:7;29865:15;29828:11;:25;29840:12;:10;:12::i;:::-;29828:25;;;;;;;;;;;;;;;:34;29854:7;29828:34;;;;;;;;;;;;;;;;:52;;;;:::i;:::-;29756:8;:135::i;:::-;29909:4;29902:11;;29621:300;;;;:::o;28062:192::-;28165:4;28182:42;28192:12;:10;:12::i;:::-;28206:9;28217:6;28182:9;:42::i;:::-;28242:4;28235:11;;28062:192;;;;:::o;32122:566::-;25708:4;25689:16;;:23;;;;;;;;;;;;;;;;;;32178:19:::1;32200:24;32218:4;32200:9;:24::i;:::-;32178:46;;32235:29;32252:11;32235:16;:29::i;:::-;32275:15;32293:21;32275:39;;32325:14;32355:12;;32342:10;;:25;;;;:::i;:::-;32325:42;;32395:1;32382:9;:14:::0;32378:33:::1;;32410:1;32398:13;;32378:33;32422:18;32471:9;32457:10;;32444;:23;;;;:::i;:::-;32443:37;;;;:::i;:::-;32422:58;;32505:13;32491:27;;;;;:::i;:::-;;;32529:50;32550:13;;;;;;;;;;;32565;32529:20;:50::i;:::-;32590:49;32611:15;;;;;;;;;;;32628:10;32590:20;:49::i;:::-;32679:1;32652:24;:28;;;;32167:521;;;;25754:5:::0;25735:16;;:24;;;;;;;;;;;;;;;;;;32122:566::o;35056:247::-;12871:13;:11;:13::i;:::-;35168:8:::1;35143:33;;:21;;;;;;;;;;;:33;;::::0;35135:63:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;35233:8;35209:21;;:32;;;;;;;;;;;;;;;;;;35257:38;35286:8;35257:38;;;;;;:::i;:::-;;;;;;;;35056:247:::0;:::o;37134:359::-;12871:13;:11;:13::i;:::-;37198:15:::1;37216:21;37198:39;;37249:9;37272:15;;;;;;;;;;;37264:29;;37301:10;37264:52;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37248:68;;;37335:4;37327:32;;;;;;;;;;;;:::i;:::-;;;;;;;;;37375:110;37459:15;;;;;;;;;;;37375:110;;;;;;:::i;:::-;;;;;;;;37187:306;;37134:359::o:0;25201:53::-;;;;:::o;28304:170::-;28411:7;28438:11;:19;28450:6;28438:19;;;;;;;;;;;;;;;:28;28458:7;28438:28;;;;;;;;;;;;;;;;28431:35;;28304:170;;;;:::o;37570:465::-;12871:13;:11;:13::i;:::-;37747:4:::1;37722:30;;:13;:30;;::::0;37700:134:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;37845:9;37864:13;37857:30;;;37888:15;;;;;;;;;;;37905:7;37857:56;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;37845:68;;37932:4;37924:32;;;;;;;;;;;;:::i;:::-;;;;;;;;;37972:55;38019:7;37972:55;;;;;;:::i;:::-;;;;;;;;37689:346;37570:465:::0;;:::o;34342:233::-;12871:13;:11;:13::i;:::-;34441:5:::1;34411:18;:27;34430:7;34411:27;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;34462:105;34549:7;34462:105;;;;;;:::i;:::-;;;;;;;;34342:233:::0;:::o;13891:238::-;12871:13;:11;:13::i;:::-;14014:1:::1;13994:22;;:8;:22;;::::0;13972:110:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;14093:28;14112:8;14093:18;:28::i;:::-;13891:238:::0;:::o;35678:280::-;12871:13;:11;:13::i;:::-;35792:1:::1;35766:28;;:14;:28;;::::0;35758:63:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;35856:14;35832:13;;:39;;;;;;;;;;;;;;;;;;35887:63;35936:13;;;;;;;;;;;35887:63;;;;;;:::i;:::-;;;;;;;;35678:280:::0;:::o;716:98::-;769:7;796:10;789:17;;716:98;:::o;29953:341::-;30065:1;30047:20;;:6;:20;;;30039:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;30146:1;30127:21;;:7;:21;;;30119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;30231:6;30200:11;:19;30212:6;30200:19;;;;;;;;;;;;;;;:28;30220:7;30200:28;;;;;;;;;;;;;;;:37;;;;30270:7;30253:33;;30262:6;30253:33;;;30279:6;30253:33;;;;;;:::i;:::-;;;;;;;;29953:341;;;:::o;30427:1460::-;30531:1;30515:18;;:4;:18;;;30507:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;30608:1;30594:16;;:2;:16;;;30586:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;30678:1;30669:6;:10;30661:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;30775:6;30758:7;:13;30766:4;30758:13;;;;;;;;;;;;;;;;:23;;30736:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;30904:28;30935:24;30953:4;30935:9;:24::i;:::-;30904:55;;30970:28;31038:23;;31001:20;:60;;30970:91;;31072:8;31198:16;;;;;;;;;;;31197:17;:55;;;;;31239:13;31231:21;;:4;:21;;;;31197:55;:95;;;;;31269:23;31197:95;:133;;;;;31309:21;;;;;;;;;;;31197:133;31179:206;;;31357:16;:14;:16::i;:::-;31179:206;31405:13;31399:19;;:2;:19;;;:48;;;;;31423:18;:24;31442:4;31423:24;;;;;;;;;;;;;;;;;;;;;;;;;31422:25;31399:48;31395:111;;;31491:3;31481:6;31471:7;;:16;;;;:::i;:::-;31470:24;;;;:::i;:::-;31464:30;;31395:111;31528:13;31520:21;;:4;:21;;;:48;;;;;31546:18;:22;31565:2;31546:22;;;;;;;;;;;;;;;;;;;;;;;;;31545:23;31520:48;31516:110;;;31611:3;31601:6;31592;;:15;;;;:::i;:::-;31591:23;;;;:::i;:::-;31585:29;;31516:110;31646:3;31636:13;;;;;:::i;:::-;;;31670:1;31664:3;:7;31660:177;;;31688:40;31703:4;31717;31724:3;31688:14;:40::i;:::-;31771:3;31743:24;;:31;;;;;;;:::i;:::-;;;;;;;;31822:3;31789:29;;:36;;;;;;;:::i;:::-;;;;;;;;31660:177;31847:32;31862:4;31868:2;31872:6;31847:14;:32::i;:::-;30496:1391;;;30427:1460;;;:::o;13150:132::-;13225:12;:10;:12::i;:::-;13214:23;;:7;:5;:7::i;:::-;:23;;;13206:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13150:132::o;14289:191::-;14363:16;14382:6;;;;;;;;;;;14363:25;;14408:8;14399:6;;:17;;;;;;;;;;;;;;;;;;14463:8;14432:40;;14453:8;14432:40;;;;;;;;;;;;14352:128;14289:191;:::o;32816:638::-;32942:21;32980:1;32966:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32942:40;;33011:4;32993;32998:1;32993:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;33037:4;33027;33032:1;33027:7;;;;;;;;:::i;:::-;;;;;;;:14;;;;;;;;;;;33052:62;33069:4;33084:15;33102:11;33052:8;:62::i;:::-;33153:15;:66;;;33234:11;33260:1;33304:4;33331;33367:15;33153:240;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33411:35;33428:11;33441:4;33411:35;;;;;;;:::i;:::-;;;;;;;;32871:583;32816:638;:::o;35970:252::-;36101:1;36091:6;:11;36087:24;36104:7;36087:24;36122:9;36137;:14;;36159:6;36137:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36121:49;;;36189:4;36181:33;;;;;;;;;;;;:::i;:::-;;;;;;;;;36076:146;35970:252;;;:::o;33590:253::-;33737:6;33718:7;:15;33726:6;33718:15;;;;;;;;;;;;;;;;:25;;;;;;;:::i;:::-;;;;;;;;33776:6;33754:7;:18;33762:9;33754:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;33817:9;33800:35;;33809:6;33800:35;;;33828:6;33800:35;;;;;;:::i;:::-;;;;;;;;33590:253;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:60::-;3474:3;3495:5;3488:12;;3446:60;;;:::o;3512:142::-;3562:9;3595:53;3613:34;3622:24;3640:5;3622:24;:::i;:::-;3613:34;:::i;:::-;3595:53;:::i;:::-;3582:66;;3512:142;;;:::o;3660:126::-;3710:9;3743:37;3774:5;3743:37;:::i;:::-;3730:50;;3660:126;;;:::o;3792:153::-;3869:9;3902:37;3933:5;3902:37;:::i;:::-;3889:50;;3792:153;;;:::o;3951:185::-;4065:64;4123:5;4065:64;:::i;:::-;4060:3;4053:77;3951:185;;:::o;4142:276::-;4262:4;4300:2;4289:9;4285:18;4277:26;;4313:98;4408:1;4397:9;4393:17;4384:6;4313:98;:::i;:::-;4142:276;;;;:::o;4424:118::-;4511:24;4529:5;4511:24;:::i;:::-;4506:3;4499:37;4424:118;;:::o;4548:222::-;4641:4;4679:2;4668:9;4664:18;4656:26;;4692:71;4760:1;4749:9;4745:17;4736:6;4692:71;:::i;:::-;4548:222;;;;:::o;4776:619::-;4853:6;4861;4869;4918:2;4906:9;4897:7;4893:23;4889:32;4886:119;;;4924:79;;:::i;:::-;4886:119;5044:1;5069:53;5114:7;5105:6;5094:9;5090:22;5069:53;:::i;:::-;5059:63;;5015:117;5171:2;5197:53;5242:7;5233:6;5222:9;5218:22;5197:53;:::i;:::-;5187:63;;5142:118;5299:2;5325:53;5370:7;5361:6;5350:9;5346:22;5325:53;:::i;:::-;5315:63;;5270:118;4776:619;;;;;:::o;5401:86::-;5436:7;5476:4;5469:5;5465:16;5454:27;;5401:86;;;:::o;5493:112::-;5576:22;5592:5;5576:22;:::i;:::-;5571:3;5564:35;5493:112;;:::o;5611:214::-;5700:4;5738:2;5727:9;5723:18;5715:26;;5751:67;5815:1;5804:9;5800:17;5791:6;5751:67;:::i;:::-;5611:214;;;;:::o;5831:329::-;5890:6;5939:2;5927:9;5918:7;5914:23;5910:32;5907:119;;;5945:79;;:::i;:::-;5907:119;6065:1;6090:53;6135:7;6126:6;6115:9;6111:22;6090:53;:::i;:::-;6080:63;;6036:117;5831:329;;;;:::o;6166:104::-;6211:7;6240:24;6258:5;6240:24;:::i;:::-;6229:35;;6166:104;;;:::o;6276:142::-;6379:32;6405:5;6379:32;:::i;:::-;6374:3;6367:45;6276:142;;:::o;6424:254::-;6533:4;6571:2;6560:9;6556:18;6548:26;;6584:87;6668:1;6657:9;6653:17;6644:6;6584:87;:::i;:::-;6424:254;;;;:::o;6684:329::-;6743:6;6792:2;6780:9;6771:7;6767:23;6763:32;6760:119;;;6798:79;;:::i;:::-;6760:119;6918:1;6943:53;6988:7;6979:6;6968:9;6964:22;6943:53;:::i;:::-;6933:63;;6889:117;6684:329;;;;:::o;7019:118::-;7106:24;7124:5;7106:24;:::i;:::-;7101:3;7094:37;7019:118;;:::o;7143:222::-;7236:4;7274:2;7263:9;7259:18;7251:26;;7287:71;7355:1;7344:9;7340:17;7331:6;7287:71;:::i;:::-;7143:222;;;;:::o;7371:116::-;7441:21;7456:5;7441:21;:::i;:::-;7434:5;7431:32;7421:60;;7477:1;7474;7467:12;7421:60;7371:116;:::o;7493:133::-;7536:5;7574:6;7561:20;7552:29;;7590:30;7614:5;7590:30;:::i;:::-;7493:133;;;;:::o;7632:323::-;7688:6;7737:2;7725:9;7716:7;7712:23;7708:32;7705:119;;;7743:79;;:::i;:::-;7705:119;7863:1;7888:50;7930:7;7921:6;7910:9;7906:22;7888:50;:::i;:::-;7878:60;;7834:114;7632:323;;;;:::o;7961:474::-;8029:6;8037;8086:2;8074:9;8065:7;8061:23;8057:32;8054:119;;;8092:79;;:::i;:::-;8054:119;8212:1;8237:53;8282:7;8273:6;8262:9;8258:22;8237:53;:::i;:::-;8227:63;;8183:117;8339:2;8365:53;8410:7;8401:6;8390:9;8386:22;8365:53;:::i;:::-;8355:63;;8310:118;7961:474;;;;;:::o;8441:227::-;8581:34;8577:1;8569:6;8565:14;8558:58;8650:10;8645:2;8637:6;8633:15;8626:35;8441:227;:::o;8674:366::-;8816:3;8837:67;8901:2;8896:3;8837:67;:::i;:::-;8830:74;;8913:93;9002:3;8913:93;:::i;:::-;9031:2;9026:3;9022:12;9015:19;;8674:366;;;:::o;9046:419::-;9212:4;9250:2;9239:9;9235:18;9227:26;;9299:9;9293:4;9289:20;9285:1;9274:9;9270:17;9263:47;9327:131;9453:4;9327:131;:::i;:::-;9319:139;;9046:419;;;:::o;9471:180::-;9519:77;9516:1;9509:88;9616:4;9613:1;9606:15;9640:4;9637:1;9630:15;9657:194;9697:4;9717:20;9735:1;9717:20;:::i;:::-;9712:25;;9751:20;9769:1;9751:20;:::i;:::-;9746:25;;9795:1;9792;9788:9;9780:17;;9819:1;9813:4;9810:11;9807:37;;;9824:18;;:::i;:::-;9807:37;9657:194;;;;:::o;9857:191::-;9897:3;9916:20;9934:1;9916:20;:::i;:::-;9911:25;;9950:20;9968:1;9950:20;:::i;:::-;9945:25;;9993:1;9990;9986:9;9979:16;;10014:3;10011:1;10008:10;10005:36;;;10021:18;;:::i;:::-;10005:36;9857:191;;;;:::o;10054:233::-;10194:34;10190:1;10182:6;10178:14;10171:58;10263:16;10258:2;10250:6;10246:15;10239:41;10054:233;:::o;10293:366::-;10435:3;10456:67;10520:2;10515:3;10456:67;:::i;:::-;10449:74;;10532:93;10621:3;10532:93;:::i;:::-;10650:2;10645:3;10641:12;10634:19;;10293:366;;;:::o;10665:529::-;10859:4;10897:2;10886:9;10882:18;10874:26;;10946:9;10940:4;10936:20;10932:1;10921:9;10917:17;10910:47;10974:131;11100:4;10974:131;:::i;:::-;10966:139;;11115:72;11183:2;11172:9;11168:18;11159:6;11115:72;:::i;:::-;10665:529;;;;:::o;11200:226::-;11340:34;11336:1;11328:6;11324:14;11317:58;11409:9;11404:2;11396:6;11392:15;11385:34;11200:226;:::o;11432:366::-;11574:3;11595:67;11659:2;11654:3;11595:67;:::i;:::-;11588:74;;11671:93;11760:3;11671:93;:::i;:::-;11789:2;11784:3;11780:12;11773:19;;11432:366;;;:::o;11804:419::-;11970:4;12008:2;11997:9;11993:18;11985:26;;12057:9;12051:4;12047:20;12043:1;12032:9;12028:17;12021:47;12085:131;12211:4;12085:131;:::i;:::-;12077:139;;11804:419;;;:::o;12229:230::-;12369:34;12365:1;12357:6;12353:14;12346:58;12438:13;12433:2;12425:6;12421:15;12414:38;12229:230;:::o;12465:366::-;12607:3;12628:67;12692:2;12687:3;12628:67;:::i;:::-;12621:74;;12704:93;12793:3;12704:93;:::i;:::-;12822:2;12817:3;12813:12;12806:19;;12465:366;;;:::o;12837:529::-;13031:4;13069:2;13058:9;13054:18;13046:26;;13118:9;13112:4;13108:20;13104:1;13093:9;13089:17;13082:47;13146:131;13272:4;13146:131;:::i;:::-;13138:139;;13287:72;13355:2;13344:9;13340:18;13331:6;13287:72;:::i;:::-;12837:529;;;;:::o;13372:174::-;13512:26;13508:1;13500:6;13496:14;13489:50;13372:174;:::o;13552:366::-;13694:3;13715:67;13779:2;13774:3;13715:67;:::i;:::-;13708:74;;13791:93;13880:3;13791:93;:::i;:::-;13909:2;13904:3;13900:12;13893:19;;13552:366;;;:::o;13924:419::-;14090:4;14128:2;14117:9;14113:18;14105:26;;14177:9;14171:4;14167:20;14163:1;14152:9;14148:17;14141:47;14205:131;14331:4;14205:131;:::i;:::-;14197:139;;13924:419;;;:::o;14349:223::-;14489:34;14485:1;14477:6;14473:14;14466:58;14558:6;14553:2;14545:6;14541:15;14534:31;14349:223;:::o;14578:366::-;14720:3;14741:67;14805:2;14800:3;14741:67;:::i;:::-;14734:74;;14817:93;14906:3;14817:93;:::i;:::-;14935:2;14930:3;14926:12;14919:19;;14578:366;;;:::o;14950:134::-;15008:9;15041:37;15072:5;15041:37;:::i;:::-;15028:50;;14950:134;;;:::o;15090:147::-;15185:45;15224:5;15185:45;:::i;:::-;15180:3;15173:58;15090:147;;:::o;15243:545::-;15445:4;15483:2;15472:9;15468:18;15460:26;;15532:9;15526:4;15522:20;15518:1;15507:9;15503:17;15496:47;15560:131;15686:4;15560:131;:::i;:::-;15552:139;;15701:80;15777:2;15766:9;15762:18;15753:6;15701:80;:::i;:::-;15243:545;;;;:::o;15794:410::-;15834:7;15857:20;15875:1;15857:20;:::i;:::-;15852:25;;15891:20;15909:1;15891:20;:::i;:::-;15886:25;;15946:1;15943;15939:9;15968:30;15986:11;15968:30;:::i;:::-;15957:41;;16147:1;16138:7;16134:15;16131:1;16128:22;16108:1;16101:9;16081:83;16058:139;;16177:18;;:::i;:::-;16058:139;15842:362;15794:410;;;;:::o;16210:180::-;16258:77;16255:1;16248:88;16355:4;16352:1;16345:15;16379:4;16376:1;16369:15;16396:185;16436:1;16453:20;16471:1;16453:20;:::i;:::-;16448:25;;16487:20;16505:1;16487:20;:::i;:::-;16482:25;;16526:1;16516:35;;16531:18;;:::i;:::-;16516:35;16573:1;16570;16566:9;16561:14;;16396:185;;;;:::o;16587:167::-;16727:19;16723:1;16715:6;16711:14;16704:43;16587:167;:::o;16760:366::-;16902:3;16923:67;16987:2;16982:3;16923:67;:::i;:::-;16916:74;;16999:93;17088:3;16999:93;:::i;:::-;17117:2;17112:3;17108:12;17101:19;;16760:366;;;:::o;17132:419::-;17298:4;17336:2;17325:9;17321:18;17313:26;;17385:9;17379:4;17375:20;17371:1;17360:9;17356:17;17349:47;17413:131;17539:4;17413:131;:::i;:::-;17405:139;;17132:419;;;:::o;17557:147::-;17658:11;17695:3;17680:18;;17557:147;;;;:::o;17710:114::-;;:::o;17830:398::-;17989:3;18010:83;18091:1;18086:3;18010:83;:::i;:::-;18003:90;;18102:93;18191:3;18102:93;:::i;:::-;18220:1;18215:3;18211:11;18204:18;;17830:398;;;:::o;18234:379::-;18418:3;18440:147;18583:3;18440:147;:::i;:::-;18433:154;;18604:3;18597:10;;18234:379;;;:::o;18619:165::-;18759:17;18755:1;18747:6;18743:14;18736:41;18619:165;:::o;18790:366::-;18932:3;18953:67;19017:2;19012:3;18953:67;:::i;:::-;18946:74;;19029:93;19118:3;19029:93;:::i;:::-;19147:2;19142:3;19138:12;19131:19;;18790:366;;;:::o;19162:419::-;19328:4;19366:2;19355:9;19351:18;19343:26;;19415:9;19409:4;19405:20;19401:1;19390:9;19386:17;19379:47;19443:131;19569:4;19443:131;:::i;:::-;19435:139;;19162:419;;;:::o;19587:231::-;19727:34;19723:1;19715:6;19711:14;19704:58;19796:14;19791:2;19783:6;19779:15;19772:39;19587:231;:::o;19824:366::-;19966:3;19987:67;20051:2;20046:3;19987:67;:::i;:::-;19980:74;;20063:93;20152:3;20063:93;:::i;:::-;20181:2;20176:3;20172:12;20165:19;;19824:366;;;:::o;20196:545::-;20398:4;20436:2;20425:9;20421:18;20413:26;;20485:9;20479:4;20475:20;20471:1;20460:9;20456:17;20449:47;20513:131;20639:4;20513:131;:::i;:::-;20505:139;;20654:80;20730:2;20719:9;20715:18;20706:6;20654:80;:::i;:::-;20196:545;;;;:::o;20747:241::-;20887:34;20883:1;20875:6;20871:14;20864:58;20956:24;20951:2;20943:6;20939:15;20932:49;20747:241;:::o;20994:366::-;21136:3;21157:67;21221:2;21216:3;21157:67;:::i;:::-;21150:74;;21233:93;21322:3;21233:93;:::i;:::-;21351:2;21346:3;21342:12;21335:19;;20994:366;;;:::o;21366:419::-;21532:4;21570:2;21559:9;21555:18;21547:26;;21619:9;21613:4;21609:20;21605:1;21594:9;21590:17;21583:47;21647:131;21773:4;21647:131;:::i;:::-;21639:139;;21366:419;;;:::o;21791:348::-;21920:4;21958:2;21947:9;21943:18;21935:26;;21971:79;22047:1;22036:9;22032:17;22023:6;21971:79;:::i;:::-;22060:72;22128:2;22117:9;22113:18;22104:6;22060:72;:::i;:::-;21791:348;;;;;:::o;22145:137::-;22199:5;22230:6;22224:13;22215:22;;22246:30;22270:5;22246:30;:::i;:::-;22145:137;;;;:::o;22288:345::-;22355:6;22404:2;22392:9;22383:7;22379:23;22375:32;22372:119;;;22410:79;;:::i;:::-;22372:119;22530:1;22555:61;22608:7;22599:6;22588:9;22584:22;22555:61;:::i;:::-;22545:71;;22501:125;22288:345;;;;:::o;22639:226::-;22779:34;22775:1;22767:6;22763:14;22756:58;22848:9;22843:2;22835:6;22831:15;22824:34;22639:226;:::o;22871:366::-;23013:3;23034:67;23098:2;23093:3;23034:67;:::i;:::-;23027:74;;23110:93;23199:3;23110:93;:::i;:::-;23228:2;23223:3;23219:12;23212:19;;22871:366;;;:::o;23243:529::-;23437:4;23475:2;23464:9;23460:18;23452:26;;23524:9;23518:4;23514:20;23510:1;23499:9;23495:17;23488:47;23552:131;23678:4;23552:131;:::i;:::-;23544:139;;23693:72;23761:2;23750:9;23746:18;23737:6;23693:72;:::i;:::-;23243:529;;;;:::o;23778:234::-;23918:34;23914:1;23906:6;23902:14;23895:58;23987:17;23982:2;23974:6;23970:15;23963:42;23778:234;:::o;24018:366::-;24160:3;24181:67;24245:2;24240:3;24181:67;:::i;:::-;24174:74;;24257:93;24346:3;24257:93;:::i;:::-;24375:2;24370:3;24366:12;24359:19;;24018:366;;;:::o;24390:529::-;24584:4;24622:2;24611:9;24607:18;24599:26;;24671:9;24665:4;24661:20;24657:1;24646:9;24642:17;24635:47;24699:131;24825:4;24699:131;:::i;:::-;24691:139;;24840:72;24908:2;24897:9;24893:18;24884:6;24840:72;:::i;:::-;24390:529;;;;:::o;24925:225::-;25065:34;25061:1;25053:6;25049:14;25042:58;25134:8;25129:2;25121:6;25117:15;25110:33;24925:225;:::o;25156:366::-;25298:3;25319:67;25383:2;25378:3;25319:67;:::i;:::-;25312:74;;25395:93;25484:3;25395:93;:::i;:::-;25513:2;25508:3;25504:12;25497:19;;25156:366;;;:::o;25528:419::-;25694:4;25732:2;25721:9;25717:18;25709:26;;25781:9;25775:4;25771:20;25767:1;25756:9;25752:17;25745:47;25809:131;25935:4;25809:131;:::i;:::-;25801:139;;25528:419;;;:::o;25953:172::-;26093:24;26089:1;26081:6;26077:14;26070:48;25953:172;:::o;26131:366::-;26273:3;26294:67;26358:2;26353:3;26294:67;:::i;:::-;26287:74;;26370:93;26459:3;26370:93;:::i;:::-;26488:2;26483:3;26479:12;26472:19;;26131:366;;;:::o;26503:419::-;26669:4;26707:2;26696:9;26692:18;26684:26;;26756:9;26750:4;26746:20;26742:1;26731:9;26727:17;26720:47;26784:131;26910:4;26784:131;:::i;:::-;26776:139;;26503:419;;;:::o;26928:223::-;27068:34;27064:1;27056:6;27052:14;27045:58;27137:6;27132:2;27124:6;27120:15;27113:31;26928:223;:::o;27157:366::-;27299:3;27320:67;27384:2;27379:3;27320:67;:::i;:::-;27313:74;;27396:93;27485:3;27396:93;:::i;:::-;27514:2;27509:3;27505:12;27498:19;;27157:366;;;:::o;27529:545::-;27731:4;27769:2;27758:9;27754:18;27746:26;;27818:9;27812:4;27808:20;27804:1;27793:9;27789:17;27782:47;27846:131;27972:4;27846:131;:::i;:::-;27838:139;;27987:80;28063:2;28052:9;28048:18;28039:6;27987:80;:::i;:::-;27529:545;;;;:::o;28080:223::-;28220:34;28216:1;28208:6;28204:14;28197:58;28289:6;28284:2;28276:6;28272:15;28265:31;28080:223;:::o;28309:366::-;28451:3;28472:67;28536:2;28531:3;28472:67;:::i;:::-;28465:74;;28548:93;28637:3;28548:93;:::i;:::-;28666:2;28661:3;28657:12;28650:19;;28309:366;;;:::o;28681:419::-;28847:4;28885:2;28874:9;28870:18;28862:26;;28934:9;28928:4;28924:20;28920:1;28909:9;28905:17;28898:47;28962:131;29088:4;28962:131;:::i;:::-;28954:139;;28681:419;;;:::o;29106:221::-;29246:34;29242:1;29234:6;29230:14;29223:58;29315:4;29310:2;29302:6;29298:15;29291:29;29106:221;:::o;29333:366::-;29475:3;29496:67;29560:2;29555:3;29496:67;:::i;:::-;29489:74;;29572:93;29661:3;29572:93;:::i;:::-;29690:2;29685:3;29681:12;29674:19;;29333:366;;;:::o;29705:419::-;29871:4;29909:2;29898:9;29894:18;29886:26;;29958:9;29952:4;29948:20;29944:1;29933:9;29929:17;29922:47;29986:131;30112:4;29986:131;:::i;:::-;29978:139;;29705:419;;;:::o;30130:224::-;30270:34;30266:1;30258:6;30254:14;30247:58;30339:7;30334:2;30326:6;30322:15;30315:32;30130:224;:::o;30360:366::-;30502:3;30523:67;30587:2;30582:3;30523:67;:::i;:::-;30516:74;;30599:93;30688:3;30599:93;:::i;:::-;30717:2;30712:3;30708:12;30701:19;;30360:366;;;:::o;30732:419::-;30898:4;30936:2;30925:9;30921:18;30913:26;;30985:9;30979:4;30975:20;30971:1;30960:9;30956:17;30949:47;31013:131;31139:4;31013:131;:::i;:::-;31005:139;;30732:419;;;:::o;31157:222::-;31297:34;31293:1;31285:6;31281:14;31274:58;31366:5;31361:2;31353:6;31349:15;31342:30;31157:222;:::o;31385:366::-;31527:3;31548:67;31612:2;31607:3;31548:67;:::i;:::-;31541:74;;31624:93;31713:3;31624:93;:::i;:::-;31742:2;31737:3;31733:12;31726:19;;31385:366;;;:::o;31757:419::-;31923:4;31961:2;31950:9;31946:18;31938:26;;32010:9;32004:4;32000:20;31996:1;31985:9;31981:17;31974:47;32038:131;32164:4;32038:131;:::i;:::-;32030:139;;31757:419;;;:::o;32182:228::-;32322:34;32318:1;32310:6;32306:14;32299:58;32391:11;32386:2;32378:6;32374:15;32367:36;32182:228;:::o;32416:366::-;32558:3;32579:67;32643:2;32638:3;32579:67;:::i;:::-;32572:74;;32655:93;32744:3;32655:93;:::i;:::-;32773:2;32768:3;32764:12;32757:19;;32416:366;;;:::o;32788:419::-;32954:4;32992:2;32981:9;32977:18;32969:26;;33041:9;33035:4;33031:20;33027:1;33016:9;33012:17;33005:47;33069:131;33195:4;33069:131;:::i;:::-;33061:139;;32788:419;;;:::o;33213:225::-;33353:34;33349:1;33341:6;33337:14;33330:58;33422:8;33417:2;33409:6;33405:15;33398:33;33213:225;:::o;33444:366::-;33586:3;33607:67;33671:2;33666:3;33607:67;:::i;:::-;33600:74;;33683:93;33772:3;33683:93;:::i;:::-;33801:2;33796:3;33792:12;33785:19;;33444:366;;;:::o;33816:419::-;33982:4;34020:2;34009:9;34005:18;33997:26;;34069:9;34063:4;34059:20;34055:1;34044:9;34040:17;34033:47;34097:131;34223:4;34097:131;:::i;:::-;34089:139;;33816:419;;;:::o;34241:182::-;34381:34;34377:1;34369:6;34365:14;34358:58;34241:182;:::o;34429:366::-;34571:3;34592:67;34656:2;34651:3;34592:67;:::i;:::-;34585:74;;34668:93;34757:3;34668:93;:::i;:::-;34786:2;34781:3;34777:12;34770:19;;34429:366;;;:::o;34801:419::-;34967:4;35005:2;34994:9;34990:18;34982:26;;35054:9;35048:4;35044:20;35040:1;35029:9;35025:17;35018:47;35082:131;35208:4;35082:131;:::i;:::-;35074:139;;34801:419;;;:::o;35226:180::-;35274:77;35271:1;35264:88;35371:4;35368:1;35361:15;35395:4;35392:1;35385:15;35412:180;35460:77;35457:1;35450:88;35557:4;35554:1;35547:15;35581:4;35578:1;35571:15;35598:85;35643:7;35672:5;35661:16;;35598:85;;;:::o;35689:158::-;35747:9;35780:61;35798:42;35807:32;35833:5;35807:32;:::i;:::-;35798:42;:::i;:::-;35780:61;:::i;:::-;35767:74;;35689:158;;;:::o;35853:147::-;35948:45;35987:5;35948:45;:::i;:::-;35943:3;35936:58;35853:147;;:::o;36006:114::-;36073:6;36107:5;36101:12;36091:22;;36006:114;;;:::o;36126:184::-;36225:11;36259:6;36254:3;36247:19;36299:4;36294:3;36290:14;36275:29;;36126:184;;;;:::o;36316:132::-;36383:4;36406:3;36398:11;;36436:4;36431:3;36427:14;36419:22;;36316:132;;;:::o;36454:108::-;36531:24;36549:5;36531:24;:::i;:::-;36526:3;36519:37;36454:108;;:::o;36568:179::-;36637:10;36658:46;36700:3;36692:6;36658:46;:::i;:::-;36736:4;36731:3;36727:14;36713:28;;36568:179;;;;:::o;36753:113::-;36823:4;36855;36850:3;36846:14;36838:22;;36753:113;;;:::o;36902:732::-;37021:3;37050:54;37098:5;37050:54;:::i;:::-;37120:86;37199:6;37194:3;37120:86;:::i;:::-;37113:93;;37230:56;37280:5;37230:56;:::i;:::-;37309:7;37340:1;37325:284;37350:6;37347:1;37344:13;37325:284;;;37426:6;37420:13;37453:63;37512:3;37497:13;37453:63;:::i;:::-;37446:70;;37539:60;37592:6;37539:60;:::i;:::-;37529:70;;37385:224;37372:1;37369;37365:9;37360:14;;37325:284;;;37329:14;37625:3;37618:10;;37026:608;;;36902:732;;;;:::o;37640:831::-;37903:4;37941:3;37930:9;37926:19;37918:27;;37955:71;38023:1;38012:9;38008:17;37999:6;37955:71;:::i;:::-;38036:80;38112:2;38101:9;38097:18;38088:6;38036:80;:::i;:::-;38163:9;38157:4;38153:20;38148:2;38137:9;38133:18;38126:48;38191:108;38294:4;38285:6;38191:108;:::i;:::-;38183:116;;38309:72;38377:2;38366:9;38362:18;38353:6;38309:72;:::i;:::-;38391:73;38459:3;38448:9;38444:19;38435:6;38391:73;:::i;:::-;37640:831;;;;;;;;:::o;38477:483::-;38648:4;38686:2;38675:9;38671:18;38663:26;;38699:71;38767:1;38756:9;38752:17;38743:6;38699:71;:::i;:::-;38817:9;38811:4;38807:20;38802:2;38791:9;38787:18;38780:48;38845:108;38948:4;38939:6;38845:108;:::i;:::-;38837:116;;38477:483;;;;;:::o;38966:166::-;39106:18;39102:1;39094:6;39090:14;39083:42;38966:166;:::o;39138:366::-;39280:3;39301:67;39365:2;39360:3;39301:67;:::i;:::-;39294:74;;39377:93;39466:3;39377:93;:::i;:::-;39495:2;39490:3;39486:12;39479:19;;39138:366;;;:::o;39510:419::-;39676:4;39714:2;39703:9;39699:18;39691:26;;39763:9;39757:4;39753:20;39749:1;39738:9;39734:17;39727:47;39791:131;39917:4;39791:131;:::i;:::-;39783:139;;39510:419;;;:::o

Swarm Source

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