ETH Price: $3,059.25 (+2.28%)
Gas: 6 Gwei

Token

Jackie Chan (CHAN)
 

Overview

Max Total Supply

1,000,000,000 CHAN

Holders

50

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
13,870,853.436638370262002764 CHAN

Value
$0.00
0x71418e8b045030ac52cfb779ef7e53c5fb91dd9f
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
JackieChan

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/7f6a1666fac8ecff5dd467d0938069bc221ea9e0/contracts/utils/math/SafeMath.sol
 
 
 
pragma solidity ^0.8.0;
 
// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.
 
/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }
 
    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }
 
    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }
 
    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }
 
    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }
 
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }
 
    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }
 
    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }
 
    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }
 
    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }
 
    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }
 
    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }
 
    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}
 
// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Context.sol
 
 
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
 
pragma solidity ^0.8.0;
 
/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }
 
    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}
 
// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/access/Ownable.sol
 
 
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)
 
pragma solidity ^0.8.0;
 
 
/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;
 
    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
 
    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }
 
    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }
 
    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }
 
    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }
 
    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }
 
    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }
 
    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}
 
// File: JackieChan.sol
 
 
 
pragma solidity ^0.8.7;
 
 
 
/**
 * @dev Interfaces
 */
 
interface IUniswapV2Factory {
    function createPair(address tokenA, address tokenB) external returns (address pair);
}
 
interface IUniswapV2Router01 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);
 
    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
 
    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}
 
interface IUniswapV2Router02 is IUniswapV2Router01{
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);
 
    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}
 
/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    function totalSupply() external view returns (uint256);
    function balanceOf(address account) external view returns (uint256);
    function transfer(address to, uint256 amount) external returns (bool);
    function allowance(address owner, address spender) external view returns (uint256);
    function approve(address spender, uint256 amount) external returns (bool);
 
    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
 
    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);
 
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);
 
    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}
 
/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);
 
    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);
}
 
contract JackieChan is Context, IERC20, IERC20Metadata, Ownable {
    receive() external payable {}
 
    event SendNative(bool _wallet);
 
    using SafeMath for uint256;
 
    mapping(address => uint256) private _balances;
 
    mapping(address => mapping(address => uint256)) private _allowances;
 
    uint256 _totalSupply;
    string private _name;
    string private _symbol;
    uint8 private _decimals;
 
    // fees & addresses
    mapping (string => uint) txFees;
 
    mapping (address => bool) public feeExempt;
    mapping (address => bool) public txLimitExempt;
 
    address public farmingAddress = msg.sender;
    address public taxAddress = msg.sender;
    address public nativeTokenAddress = msg.sender;
 
    // taxes for differnet levels
 
    struct TokenFee {
        uint forMarketing;
        uint forDev;
        uint forFarming;
    }
 
    struct TxLimit {
        uint buyLimit;
        uint sellLimit;
        uint cooldown;
        bool inactive;
        mapping(address => uint) buys;
        mapping(address => uint) sells;
        mapping(address => uint) lastTx;
    }
 
    TxLimit txLimits;
 
    struct SwapToken {
        uint swapTokensAt;
        uint lastSwap;
        uint swapDelay;
        uint minToSend;
    }
 
    SwapToken public swapTokens;
 
    IUniswapV2Router02 public uniswapV2Router;
    address public uniswapV2Pair;
 
    constructor() {
        _name = " Jackie Chan";
        _symbol = "CHAN";
        _decimals = 18;
        _totalSupply = 1_000_000_000 * (10 ** decimals());
 
        feeExempt[msg.sender] = true;
        txLimitExempt[msg.sender] = true;
        feeExempt[address(this)] = true;
        txLimitExempt[address(this)] = true;
        feeExempt[farmingAddress] = true;
        txLimitExempt[farmingAddress] = true;
        feeExempt[taxAddress] = true;
        txLimitExempt[taxAddress] = true;
        feeExempt[nativeTokenAddress] = true;
        txLimitExempt[nativeTokenAddress] = true;
 
        /**
            Set default buy/sell tx fees (no tax on transfers)
            - marketing, dev, liqudity, farming
        */
        txFees["marketingBuy"] = 100; // 1%
        txFees["liqBuy"] = 250;
        txFees["farmingBuy"] = 100;
 
        txFees["marketingSell"] = 200;
        txFees["liqSell"] = 500;
        txFees["farmingSell"] = 200;
 
        /**
            Set default tx limits
            - Cooldown, buy limit, sell limit
        */
        txLimits.cooldown = 30 seconds;
        txLimits.buyLimit = _totalSupply.div(100);
        txLimits.sellLimit = _totalSupply.div(100);
 
        swapTokens.swapTokensAt = _totalSupply.div(1394); // 0.1%
        swapTokens.minToSend = 1 ether;
        swapTokens.swapDelay = 1 minutes;
 
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        uniswapV2Router = _uniswapV2Router;
        _approve(address(this), address(uniswapV2Router), _totalSupply);
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());
        IERC20(uniswapV2Pair).approve(address(uniswapV2Router), type(uint).max);
 
        approve(address(uniswapV2Router), _totalSupply);
        feeExempt[address(uniswapV2Router)] = true;
 
        _balances[msg.sender] = _totalSupply;
        emit Transfer(address(0), msg.sender, _totalSupply);
    }
 
    /**
        Sets buy/sell transaction fees
    */
    event Fees(
        uint _marketingBuy,
        uint _liqBuy,
        uint _farmingBuy,
        uint _marketingSell,
        uint _liqSell,
        uint _farmingSell
    );
 
    function setFees(
        uint _marketingBuy,
        uint _liqBuy,
        uint _farmingBuy,
        uint _marketingSell,
        uint _liqSell,
        uint _farmingSell
    ) external onlyOwner {
        require(_marketingBuy <= 1500, "Marketing fee is too high!");
        require(_liqBuy <= 1500, "Dev fee is too high!");
        require(_farmingBuy <= 1500, "Farming fee is too high!");
        require(_marketingSell <= 1500, "Marketing fee is too high!");
        require(_liqSell <= 1500, "Dev fee is too high!");
        require(_farmingSell <= 1500, "Farming fee is too high!");
 
        txFees["marketingBuy"] = _marketingBuy;
        txFees["liqBuy"] = _liqBuy;
        txFees["farmingBuy"] = _farmingBuy;
 
        txFees["marketingSell"] = _marketingSell;
        txFees["liqSell"] = _liqSell;
        txFees["farmingSell"] = _farmingSell;
 
        emit Fees(
            _marketingBuy,
            _liqBuy,
            _farmingBuy,
            _marketingSell,
            _liqSell,
            _farmingSell
        );
    }
 
    /**
        Returns buy/sell transaction fees
    */
    function getFees() public view returns(
        uint marketingBuy,
        uint liqBuy,
        uint farmingBuy,
        uint marketingSell,
        uint liqSell,
        uint farmingSell
    ) {
        return (
            txFees["marketingBuy"],
            txFees["liqBuy"],
            txFees["farmingBuy"],
            txFees["marketingSell"],
            txFees["liqSell"],
            txFees["farmingSell"]
        );
    }
 
    /**
        Sets the tax collector contracts
    */
    function setTaxAddress(address _farmingAddress, address _taxAddress, address _nativeTokenAddress) external onlyOwner {
        farmingAddress = _farmingAddress;
        taxAddress = _taxAddress;
        nativeTokenAddress = _nativeTokenAddress;
    }
 
    /**
        Sets the tax free trading for the specific address
    */
    function setFeeExempt(address _address, bool _value) external onlyOwner {
        feeExempt[_address] = _value;
    }
 
    /**
        Sets the limit free trading for the specific address
    */
    function setTxLimitExempt(address _address, bool _value) external onlyOwner {
        txLimitExempt[_address] = _value;
    }
 
    /**
        Sets the sell/buy limits & cooldown period
    */
    function setTxLimits(uint _buyLimit, uint _sellLimit, uint _cooldown, bool _inactive) external onlyOwner {
        require(_buyLimit >= _totalSupply.div(200), "Buy transaction limit is too low!"); // 0.5%
        require(_sellLimit >= _totalSupply.div(400), "Sell transaction limit is too low!"); // 0.25%
        require(_cooldown <= 30 minutes, "Cooldown should be 30 minutes or less!");
 
        txLimits.buyLimit = _buyLimit;
        txLimits.sellLimit = _sellLimit;
        txLimits.cooldown = _cooldown;
        txLimits.inactive = _inactive;
    }
 
    /**
        Sell tokens at
    */
    function setSwapTokens(uint _swapTokensAt, uint _lastSwap, uint _delay) external onlyOwner {
        swapTokens.swapTokensAt = _swapTokensAt;
        swapTokens.lastSwap = _lastSwap;
        swapTokens.swapDelay = _delay;
    }
 
    /**
        Returns the sell/buy limits & cooldown period
    */
    function getTxLimits() public view returns(uint buyLimit, uint sellLimit, uint cooldown, bool inactive) {
        return (txLimits.buyLimit, txLimits.sellLimit, txLimits.cooldown, txLimits.inactive);
    }
 
    /**
        Checks the BUY transaction limits for the specific user with the sent amount
    */
    function checkBuyTxLimit(address _sender, uint256 _amount) internal view {
        require(
            txLimits.inactive == true ||
            txLimitExempt[_sender] == true ||
            txLimits.buys[_sender].add(_amount) < txLimits.buyLimit ||
            (txLimits.buys[_sender].add(_amount) > txLimits.buyLimit &&
            txLimits.lastTx[_sender].add(txLimits.cooldown) < block.timestamp),
            "Buy transaction limit reached!"
        );
    }
 
    /**
        Checks the SELL transaction limits for the specific user with the sent amount
    */
    function checkSellTxLimit(address _sender, uint256 _amount) internal view {
        require(
            txLimits.inactive == true ||
            txLimitExempt[_sender] == true ||
            txLimits.sells[_sender].add(_amount) < txLimits.sellLimit ||
            (txLimits.sells[_sender].add(_amount) > txLimits.sellLimit &&
            txLimits.lastTx[_sender].add(txLimits.cooldown) < block.timestamp),
            "Sell transaction limit reached!"
        );
    }
 
    /**
        Saves the recent buy/sell transactions
        The function used by _transfer() when the cooldown/tx limit is active
    */
    function setRecentTx(bool _isSell, address _sender, uint _amount) internal {
        if(txLimits.lastTx[_sender].add(txLimits.cooldown) < block.timestamp) {
            _isSell ? txLimits.sells[_sender] = _amount : txLimits.buys[_sender] = _amount;
        } else {
            _isSell ? txLimits.sells[_sender] += _amount : txLimits.buys[_sender] += _amount;
        }
 
        txLimits.lastTx[_sender] = block.timestamp;
    }
 
    /**
        Returns the recent buys, sells and the last transaction for the specific wallet
    */
    function getRecentTx(address _address) public view returns(uint buys, uint sells, uint lastTx) {
        return (txLimits.buys[_address], txLimits.sells[_address], txLimits.lastTx[_address]);
    }
 
    /**
        Automatic swap
    */
 
    function swapTokensForNative(uint256 _amount) internal {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();
        _approve(address(this), address(uniswapV2Router), _amount);
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            _amount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }
 
    function manualSwapTokensForNative(uint256 _amount) external onlyOwner {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();
        _approve(address(this), address(uniswapV2Router), _amount);
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            _amount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }
 
    function manualSendNative() external onlyOwner {
        uint256 contractNativeBalance = address(this).balance;
        sendNativeTokens(contractNativeBalance);
    }
 
    function sendNativeTokens(uint256 _amount) private {
 
        (bool success, ) = payable(nativeTokenAddress).call{value: _amount.div(3)}("");
        (bool success2, ) = payable(farmingAddress).call{value: _amount.div(3)}("");
        (bool success3, ) = payable(taxAddress).call{value: _amount.div(3)}("");
 
        emit SendNative(success);
        emit SendNative(success2);
        emit SendNative(success3);
    }
 
    function withdrawAnyToken(address payable _to, IERC20 _token) public onlyOwner {
        _token.transfer(_to, _token.balanceOf(address(this)));
    }
 
    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }
 
    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }
 
    function decimals() public view virtual override returns (uint8) {
        return _decimals;
    }
 
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }
 
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }
 
    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }
 
    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }
 
    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }
 
    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }
 
    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }
 
    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }
 
        return true;
    }
 
    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
 
        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
 
        uint marketingFee;
        uint devFee;
        uint farmingFee;
 
        bool hasFees = true;
 
        // BUY
        if(from == uniswapV2Pair) {
            // Add bots to blacklist before launch on buy
 
            checkBuyTxLimit(to, amount);
 
            setRecentTx(false, to, amount);
 
            marketingFee = txFees["marketingBuy"];
            devFee = txFees["liqBuy"];
            farmingFee = txFees["farmingBuy"];
        }
        // SELL
        else if(to == uniswapV2Pair) {
            checkSellTxLimit(from, amount);
 
            setRecentTx(true, from, amount);
 
            marketingFee = txFees["marketingSell"];
            devFee = txFees["liqSell"];
            farmingFee = txFees["farmingSell"];
        }
 
        unchecked {
            _balances[from] = fromBalance - amount;
        }
 
        if(feeExempt[to] || feeExempt[from]) {
            hasFees = false;
        }
 
        if(hasFees && (to == uniswapV2Pair || from == uniswapV2Pair)) {
            TokenFee memory TokenFees;
            TokenFees.forMarketing = amount.mul(marketingFee).div(10000);
            TokenFees.forDev = amount.mul(devFee).div(10000);
            TokenFees.forFarming = amount.mul(farmingFee).div(10000);
 
            uint totalFees =
                TokenFees.forMarketing
                .add(TokenFees.forDev)
                .add(TokenFees.forFarming);
 
            amount = amount.sub(totalFees);
 
            _balances[address(this)] += totalFees; // dev, lp, marketing fees
            emit Transfer(from, address(this), totalFees);
 
            // If active we do swap
            uint256 contractTokenBalance = _balances[address(this)];
 
            if (
                contractTokenBalance > swapTokens.swapTokensAt &&
                block.timestamp > swapTokens.lastSwap + swapTokens.swapDelay &&
                to == uniswapV2Pair
            ) {
                // Balance can be 10% more
                if(contractTokenBalance > swapTokens.swapTokensAt.mul(1100).div(1000)) {
                    swapTokensForNative(swapTokens.swapTokensAt);
                } else {
                    swapTokensForNative(contractTokenBalance);
                }
 
                swapTokens.lastSwap = block.timestamp;
 
                uint256 contractNativeBalance = address(this).balance;
 
                if(contractNativeBalance > swapTokens.minToSend) {
                    sendNativeTokens(contractNativeBalance);
                }
            }
        }
 
        _balances[to] += amount;
        emit Transfer(from, to, amount);
    }
 
    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");
 
        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }
 
    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }
 
    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");
 
        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }
 
        emit Transfer(account, address(0), amount);
    }
 
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }
}

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":"uint256","name":"_marketingBuy","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_liqBuy","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_farmingBuy","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_marketingSell","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_liqSell","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_farmingSell","type":"uint256"}],"name":"Fees","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":"bool","name":"_wallet","type":"bool"}],"name":"SendNative","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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","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":[],"name":"farmingAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"feeExempt","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getFees","outputs":[{"internalType":"uint256","name":"marketingBuy","type":"uint256"},{"internalType":"uint256","name":"liqBuy","type":"uint256"},{"internalType":"uint256","name":"farmingBuy","type":"uint256"},{"internalType":"uint256","name":"marketingSell","type":"uint256"},{"internalType":"uint256","name":"liqSell","type":"uint256"},{"internalType":"uint256","name":"farmingSell","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"getRecentTx","outputs":[{"internalType":"uint256","name":"buys","type":"uint256"},{"internalType":"uint256","name":"sells","type":"uint256"},{"internalType":"uint256","name":"lastTx","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTxLimits","outputs":[{"internalType":"uint256","name":"buyLimit","type":"uint256"},{"internalType":"uint256","name":"sellLimit","type":"uint256"},{"internalType":"uint256","name":"cooldown","type":"uint256"},{"internalType":"bool","name":"inactive","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"manualSendNative","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"manualSwapTokensForNative","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nativeTokenAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_value","type":"bool"}],"name":"setFeeExempt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingBuy","type":"uint256"},{"internalType":"uint256","name":"_liqBuy","type":"uint256"},{"internalType":"uint256","name":"_farmingBuy","type":"uint256"},{"internalType":"uint256","name":"_marketingSell","type":"uint256"},{"internalType":"uint256","name":"_liqSell","type":"uint256"},{"internalType":"uint256","name":"_farmingSell","type":"uint256"}],"name":"setFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_swapTokensAt","type":"uint256"},{"internalType":"uint256","name":"_lastSwap","type":"uint256"},{"internalType":"uint256","name":"_delay","type":"uint256"}],"name":"setSwapTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_farmingAddress","type":"address"},{"internalType":"address","name":"_taxAddress","type":"address"},{"internalType":"address","name":"_nativeTokenAddress","type":"address"}],"name":"setTaxAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_value","type":"bool"}],"name":"setTxLimitExempt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_buyLimit","type":"uint256"},{"internalType":"uint256","name":"_sellLimit","type":"uint256"},{"internalType":"uint256","name":"_cooldown","type":"uint256"},{"internalType":"bool","name":"_inactive","type":"bool"}],"name":"setTxLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapTokens","outputs":[{"internalType":"uint256","name":"swapTokensAt","type":"uint256"},{"internalType":"uint256","name":"lastSwap","type":"uint256"},{"internalType":"uint256","name":"swapDelay","type":"uint256"},{"internalType":"uint256","name":"minToSend","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","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":[{"internalType":"address","name":"","type":"address"}],"name":"txLimitExempt","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"_to","type":"address"},{"internalType":"contract IERC20","name":"_token","type":"address"}],"name":"withdrawAnyToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052600a8054336001600160a01b03199182168117909255600b8054821683179055600c805490911690911790553480156200003d57600080fd5b506200004933620005d0565b60408051808201909152600c81526b102530b1b5b4b29021b430b760a11b60208201526004906200007b908262000822565b5060408051808201909152600481526321a420a760e11b6020820152600590620000a6908262000822565b506006805460ff19166012908117909155620000c490600a62000a01565b620000d490633b9aca0062000a12565b6003553360009081526008602081815260408084208054600160ff1991821681179092556009808552838720805483168417905530875285855283872080548316841790558085528387208054831684179055600a80546001600160a01b03908116895287875285892080548516861790559054811688528186528488208054841685179055600b805482168952878752858920805485168617905554811688528186528488208054841685179055600c80548216895296865284882080548416851790558654168752909352938190208054909216909317905590516b6d61726b6574696e6742757960a01b81526064916007910190815260405190819003602001812091909155656c697142757960d01b815260fa9060079060060190815260405190819003602001812091909155696661726d696e6742757960b01b8152606490600790600a01908152604051908190036020018120919091556c1b585c9ad95d1a5b99d4d95b1b609a1b815260c890600790600d0190815260405190819003602001812091909155661b1a5c54d95b1b60ca1b81526101f4906007908101908152604051908190036020018120919091556a19985c9b5a5b99d4d95b1b60aa1b815260c890600790600b019081526040516020918190038201902091909155601e600f55600354620002d69160649062000620811b6200125e17901c565b600d55600354620002f590606462000620602090811b6200125e17901c565b600e55600354620003159061057262000620602090811b6200125e17901c565b601455670de0b6b3a7640000601755603c601655601880546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d90811790915560035462000364903090839062000637565b806001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620003a3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003c9919062000a2c565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000417573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200043d919062000a2c565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156200048b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004b1919062000a2c565b601980546001600160a01b0319166001600160a01b0392831690811790915560185460405163095ea7b360e01b81529216600483015260001960248301529063095ea7b3906044016020604051808303816000875af115801562000519573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200053f919062000a5e565b506018546003546200055b916001600160a01b03169062000763565b506018546001600160a01b03166000908152600860209081526040808320805460ff1916600190811790915560035433808652918452828520819055915191825292917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35062000aa5565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006200062e828462000a82565b90505b92915050565b6001600160a01b0383166200069f5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084015b60405180910390fd5b6001600160a01b038216620007025760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840162000696565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000336200077381858562000637565b5060019392505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620007a857607f821691505b602082108103620007c957634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200081d57600081815260208120601f850160051c81016020861015620007f85750805b601f850160051c820191505b81811015620008195782815560010162000804565b5050505b505050565b81516001600160401b038111156200083e576200083e6200077d565b62000856816200084f845462000793565b84620007cf565b602080601f8311600181146200088e5760008415620008755750858301515b600019600386901b1c1916600185901b17855562000819565b600085815260208120601f198616915b82811015620008bf578886015182559484019460019091019084016200089e565b5085821015620008de5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b8085111562000945578160001904821115620009295762000929620008ee565b808516156200093757918102915b93841c939080029062000909565b509250929050565b6000826200095e5750600162000631565b816200096d5750600062000631565b81600181146200098657600281146200099157620009b1565b600191505062000631565b60ff841115620009a557620009a5620008ee565b50506001821b62000631565b5060208310610133831016604e8410600b8410161715620009d6575081810a62000631565b620009e2838362000904565b8060001904821115620009f957620009f9620008ee565b029392505050565b60006200062e60ff8416836200094d565b8082028115828204841417620006315762000631620008ee565b60006020828403121562000a3f57600080fd5b81516001600160a01b038116811462000a5757600080fd5b9392505050565b60006020828403121562000a7157600080fd5b8151801515811462000a5757600080fd5b60008262000aa057634e487b7160e01b600052601260045260246000fd5b500490565b6124708062000ab56000396000f3fe6080604052600436106102075760003560e01c80636519aa24116101185780638da5cb5b116100a0578063a9059cbb1161006f578063a9059cbb146106a1578063b7bda68f146106c1578063db8d55f1146106e1578063dd62ed3e14610723578063f2fde38b1461074357600080fd5b80638da5cb5b1461062e5780638ebfc7961461064c57806395d89b411461066c578063a457c2d71461068157600080fd5b8063715018a6116100e7578063715018a61461057657806373d002241461058b57806386f6c3c1146105ce5780638a2ade58146105ee5780638d7a8ba71461060e57600080fd5b80636519aa24146104e05780636745297e146105005780636d61c49d1461052057806370a082311461054057600080fd5b8063313ce5671161019b57806342966c681161016a57806342966c681461044b57806349bd5a5e1461046b57806349d3c1351461048b5780634d0047ee146104a0578063526731e6146104c057600080fd5b8063313ce567146103a9578063361f4fb4146103cb57806339509351146103fb578063398daa851461041b57600080fd5b80631694505e116101d75780631694505e1461031057806318160ddd1461034857806323b872dd146103675780632d4862481461038757600080fd5b806220a4031461021357806303f3d3101461028057806306fdde03146102be578063095ea7b3146102e057600080fd5b3661020e57005b600080fd5b34801561021f57600080fd5b5061026061022e366004612050565b6001600160a01b0316600090815260116020908152604080832054601283528184205460139093529220549192909190565b604080519384526020840192909252908201526060015b60405180910390f35b34801561028c57600080fd5b50600d54600e54600f5460105460ff166040805194855260208501939093529183015215156060820152608001610277565b3480156102ca57600080fd5b506102d3610763565b604051610277919061206d565b3480156102ec57600080fd5b506103006102fb3660046120bb565b6107f5565b6040519015158152602001610277565b34801561031c57600080fd5b50601854610330906001600160a01b031681565b6040516001600160a01b039091168152602001610277565b34801561035457600080fd5b506003545b604051908152602001610277565b34801561037357600080fd5b506103006103823660046120e7565b61080f565b34801561039357600080fd5b506103a76103a2366004612128565b610833565b005b3480156103b557600080fd5b5060065460405160ff9091168152602001610277565b3480156103d757600080fd5b506103006103e6366004612050565b60096020526000908152604090205460ff1681565b34801561040757600080fd5b506103006104163660046120bb565b61087a565b34801561042757600080fd5b50610300610436366004612050565b60086020526000908152604090205460ff1681565b34801561045757600080fd5b506103a7610466366004612173565b61089c565b34801561047757600080fd5b50601954610330906001600160a01b031681565b34801561049757600080fd5b506103a76108a9565b3480156104ac57600080fd5b50600c54610330906001600160a01b031681565b3480156104cc57600080fd5b506103a76104db36600461218c565b6108bb565b3480156104ec57600080fd5b506103a76104fb366004612173565b6109a9565b34801561050c57600080fd5b506103a761051b3660046121d3565b610b0b565b34801561052c57600080fd5b506103a761053b366004612214565b610c6b565b34801561054c57600080fd5b5061035961055b366004612050565b6001600160a01b031660009081526001602052604090205490565b34801561058257600080fd5b506103a7610c81565b34801561059757600080fd5b506014546015546016546017546105ae9392919084565b604080519485526020850193909352918301526060820152608001610277565b3480156105da57600080fd5b506103a76105e9366004612240565b610c95565b3480156105fa57600080fd5b50600a54610330906001600160a01b031681565b34801561061a57600080fd5b506103a7610629366004612283565b610fb3565b34801561063a57600080fd5b506000546001600160a01b0316610330565b34801561065857600080fd5b506103a7610667366004612283565b610fe6565b34801561067857600080fd5b506102d3611019565b34801561068d57600080fd5b5061030061069c3660046120bb565b611028565b3480156106ad57600080fd5b506103006106bc3660046120bb565b6110a3565b3480156106cd57600080fd5b50600b54610330906001600160a01b031681565b3480156106ed57600080fd5b506106f66110b1565b604080519687526020870195909552938501929092526060840152608083015260a082015260c001610277565b34801561072f57600080fd5b5061035961073e36600461218c565b6111bd565b34801561074f57600080fd5b506103a761075e366004612050565b6111e8565b606060048054610772906122b1565b80601f016020809104026020016040519081016040528092919081815260200182805461079e906122b1565b80156107eb5780601f106107c0576101008083540402835291602001916107eb565b820191906000526020600020905b8154815290600101906020018083116107ce57829003601f168201915b5050505050905090565b600033610803818585611271565b60019150505b92915050565b60003361081d858285611396565b610828858585611410565b506001949350505050565b61083b61195f565b600a80546001600160a01b039485166001600160a01b031991821617909155600b805493851693821693909317909255600c8054919093169116179055565b60003361080381858561088d83836111bd565b6108979190612301565b611271565b6108a633826119b9565b50565b6108b161195f565b476108a681611ae5565b6108c361195f565b6040516370a0823160e01b81523060048201526001600160a01b0382169063a9059cbb90849083906370a0823190602401602060405180830381865afa158015610911573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109359190612314565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af1158015610980573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109a4919061232d565b505050565b6109b161195f565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106109e6576109e661234a565b6001600160a01b03928316602091820292909201810191909152601854604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015610a3f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a639190612360565b81600181518110610a7657610a7661234a565b6001600160a01b039283166020918202929092010152601854610a9c9130911684611271565b60185460405163791ac94760e01b81526001600160a01b039091169063791ac94790610ad590859060009086903090429060040161237d565b600060405180830381600087803b158015610aef57600080fd5b505af1158015610b03573d6000803e3d6000fd5b505050505050565b610b1361195f565b600354610b219060c861125e565b841015610b7f5760405162461bcd60e51b815260206004820152602160248201527f427579207472616e73616374696f6e206c696d697420697320746f6f206c6f776044820152602160f81b60648201526084015b60405180910390fd5b600354610b8e9061019061125e565b831015610be85760405162461bcd60e51b815260206004820152602260248201527f53656c6c207472616e73616374696f6e206c696d697420697320746f6f206c6f604482015261772160f01b6064820152608401610b76565b610708821115610c495760405162461bcd60e51b815260206004820152602660248201527f436f6f6c646f776e2073686f756c64206265203330206d696e75746573206f72604482015265206c6573732160d01b6064820152608401610b76565b600d93909355600e91909155600f556010805460ff1916911515919091179055565b610c7361195f565b601492909255601555601655565b610c8961195f565b610c936000611caf565b565b610c9d61195f565b6105dc861115610cef5760405162461bcd60e51b815260206004820152601a60248201527f4d61726b6574696e672066656520697320746f6f2068696768210000000000006044820152606401610b76565b6105dc851115610d385760405162461bcd60e51b81526020600482015260146024820152734465762066656520697320746f6f20686967682160601b6044820152606401610b76565b6105dc841115610d855760405162461bcd60e51b81526020600482015260186024820152774661726d696e672066656520697320746f6f20686967682160401b6044820152606401610b76565b6105dc831115610dd75760405162461bcd60e51b815260206004820152601a60248201527f4d61726b6574696e672066656520697320746f6f2068696768210000000000006044820152606401610b76565b6105dc821115610e205760405162461bcd60e51b81526020600482015260146024820152734465762066656520697320746f6f20686967682160601b6044820152606401610b76565b6105dc811115610e6d5760405162461bcd60e51b81526020600482015260186024820152774661726d696e672066656520697320746f6f20686967682160401b6044820152606401610b76565b856007604051610e8f906b6d61726b6574696e6742757960a01b8152600c0190565b90815260408051918290036020908101832093909355656c697142757960d01b82526007600683018190528151928390036026018320899055696661726d696e6742757960b01b8352600a8301819052815192839003602a0183208890556c1b585c9ad95d1a5b99d4d95b1b609a1b8352600d8301819052815192839003602d018320879055661b1a5c54d95b1b60ca1b835282810181905281519283900360270183208690556a19985c9b5a5b99d4d95b1b60aa1b8352600b830152805191829003602b018220849055888252918101879052808201869052606081018590526080810184905260a0810183905290517f9d11d0c09898a8e5bed054b945fc074be173cbca95feb490df408807b1948c569160c0908290030190a1505050505050565b610fbb61195f565b6001600160a01b03919091166000908152600960205260409020805460ff1916911515919091179055565b610fee61195f565b6001600160a01b03919091166000908152600860205260409020805460ff1916911515919091179055565b606060058054610772906122b1565b6000338161103682866111bd565b9050838110156110965760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610b76565b6108288286868403611271565b600033610803818585611410565b60008060008060008060076040516110db906b6d61726b6574696e6742757960a01b8152600c0190565b90815260405190819003602001812054656c697142757960d01b82529060079060060190815260405190819003602001812054696661726d696e6742757960b01b825290600790600a01908152604051908190036020018120546c1b585c9ad95d1a5b99d4d95b1b609a1b825290600790600d0190815260405190819003602001812054661b1a5c54d95b1b60ca1b8252906007908101908152604051908190036020018120546a19985c9b5a5b99d4d95b1b60aa1b825290600790600b01908152602001604051809103902054955095509550955095509550909192939495565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6111f061195f565b6001600160a01b0381166112555760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b76565b6108a681611caf565b600061126a82846123ee565b9392505050565b6001600160a01b0383166112d35760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610b76565b6001600160a01b0382166113345760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610b76565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b60006113a284846111bd565b9050600019811461140a57818110156113fd5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610b76565b61140a8484848403611271565b50505050565b6001600160a01b0383166114745760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610b76565b6001600160a01b0382166114d65760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610b76565b6001600160a01b0383166000908152600160205260409020548181101561154e5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610b76565b601954600090819081906001906001600160a01b0390811690891603611601576115788787611cff565b61158460008888611e0e565b6040516b6d61726b6574696e6742757960a01b8152600790600c0190815260405190819003602001812054656c697142757960d01b8252945060079060060190815260405190819003602001812054696661726d696e6742757960b01b82529350600790600a0190815260200160405180910390205491506116a8565b6019546001600160a01b03908116908816036116a8576116218887611f0c565b61162d60018988611e0e565b6040516c1b585c9ad95d1a5b99d4d95b1b609a1b8152600790600d0190815260405190819003602001812054661b1a5c54d95b1b60ca1b825294506007908101908152604051908190036020018120546a19985c9b5a5b99d4d95b1b60aa1b82529350600790600b0190815260200160405180910390205491505b6001600160a01b0380891660009081526001602090815260408083208a8a039055928a16825260089052205460ff16806116fa57506001600160a01b03881660009081526008602052604090205460ff165b15611703575060005b80801561173457506019546001600160a01b038881169116148061173457506019546001600160a01b038981169116145b156118d95761175d60405180606001604052806000815260200160008152602001600081525090565b61177361271061176d8988612017565b9061125e565b815261178561271061176d8987612017565b602082015261179a61271061176d8986612017565b60408201819052602082015182516000926117c09290916117ba91612023565b90612023565b90506117cc888261202f565b3060009081526001602052604081208054929a5083929091906117f0908490612301565b909155505060405181815230906001600160a01b038c16907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3306000908152600160205260409020546014548111801561186457506016546015546118619190612301565b42115b801561187d57506019546001600160a01b038b81169116145b156118d557601454611899906103e89061176d9061044c612017565b8111156118b1576014546118ac906109b1565b6118ba565b6118ba816109b1565b4260155560175447908111156118d3576118d381611ae5565b505b5050505b6001600160a01b03871660009081526001602052604081208054889290611901908490612301565b92505081905550866001600160a01b0316886001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8860405161194d91815260200190565b60405180910390a35050505050505050565b6000546001600160a01b03163314610c935760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b76565b6001600160a01b038216611a195760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610b76565b6001600160a01b03821660009081526001602052604090205481811015611a8d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610b76565b6001600160a01b03831660008181526001602090815260408083208686039055600380548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101611389565b600c546000906001600160a01b0316611aff83600361125e565b604051600081818185875af1925050503d8060008114611b3b576040519150601f19603f3d011682016040523d82523d6000602084013e611b40565b606091505b5050600a549091506000906001600160a01b0316611b5f84600361125e565b604051600081818185875af1925050503d8060008114611b9b576040519150601f19603f3d011682016040523d82523d6000602084013e611ba0565b606091505b5050600b549091506000906001600160a01b0316611bbf85600361125e565b604051600081818185875af1925050503d8060008114611bfb576040519150601f19603f3d011682016040523d82523d6000602084013e611c00565b606091505b505090507fc7de915a10d9bde706d4e9578480e7c0356650ad28f9242079c04daaf8a93bc183604051611c37911515815260200190565b60405180910390a160405182151581527fc7de915a10d9bde706d4e9578480e7c0356650ad28f9242079c04daaf8a93bc19060200160405180910390a160405181151581527fc7de915a10d9bde706d4e9578480e7c0356650ad28f9242079c04daaf8a93bc19060200160405180910390a150505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60105460ff16151560011480611d3257506001600160a01b03821660009081526009602052604090205460ff1615156001145b80611d605750600d546001600160a01b038316600090815260116020526040902054611d5e9083612023565b105b80611dbe5750600d546001600160a01b038316600090815260116020526040902054611d8c9083612023565b118015611dbe5750600f546001600160a01b0383166000908152601360205260409020544291611dbc9190612023565b105b611e0a5760405162461bcd60e51b815260206004820152601e60248201527f427579207472616e73616374696f6e206c696d697420726561636865642100006044820152606401610b76565b5050565b600f546001600160a01b0383166000908152601360205260409020544291611e369190612023565b1015611e855782611e62576001600160a01b038216600090815260116020526040902081905580611e7f565b6001600160a01b0382166000908152601260205260409020819055805b50611eee565b82611ebd576001600160a01b03821660009081526011602052604081208054839290611eb2908490612301565b925050819055611eec565b6001600160a01b03821660009081526012602052604081208054839290611ee5908490612301565b9250508190555b505b506001600160a01b0316600090815260136020526040902042905550565b60105460ff16151560011480611f3f57506001600160a01b03821660009081526009602052604090205460ff1615156001145b80611f6d5750600e546001600160a01b038316600090815260126020526040902054611f6b9083612023565b105b80611fcb5750600e546001600160a01b038316600090815260126020526040902054611f999083612023565b118015611fcb5750600f546001600160a01b0383166000908152601360205260409020544291611fc99190612023565b105b611e0a5760405162461bcd60e51b815260206004820152601f60248201527f53656c6c207472616e73616374696f6e206c696d6974207265616368656421006044820152606401610b76565b600061126a8284612410565b600061126a8284612301565b600061126a8284612427565b6001600160a01b03811681146108a657600080fd5b60006020828403121561206257600080fd5b813561126a8161203b565b600060208083528351808285015260005b8181101561209a5785810183015185820160400152820161207e565b506000604082860101526040601f19601f8301168501019250505092915050565b600080604083850312156120ce57600080fd5b82356120d98161203b565b946020939093013593505050565b6000806000606084860312156120fc57600080fd5b83356121078161203b565b925060208401356121178161203b565b929592945050506040919091013590565b60008060006060848603121561213d57600080fd5b83356121488161203b565b925060208401356121588161203b565b915060408401356121688161203b565b809150509250925092565b60006020828403121561218557600080fd5b5035919050565b6000806040838503121561219f57600080fd5b82356121aa8161203b565b915060208301356121ba8161203b565b809150509250929050565b80151581146108a657600080fd5b600080600080608085870312156121e957600080fd5b8435935060208501359250604085013591506060850135612209816121c5565b939692955090935050565b60008060006060848603121561222957600080fd5b505081359360208301359350604090920135919050565b60008060008060008060c0878903121561225957600080fd5b505084359660208601359650604086013595606081013595506080810135945060a0013592509050565b6000806040838503121561229657600080fd5b82356122a18161203b565b915060208301356121ba816121c5565b600181811c908216806122c557607f821691505b6020821081036122e557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b80820180821115610809576108096122eb565b60006020828403121561232657600080fd5b5051919050565b60006020828403121561233f57600080fd5b815161126a816121c5565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561237257600080fd5b815161126a8161203b565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156123cd5784516001600160a01b0316835293830193918301916001016123a8565b50506001600160a01b03969096166060850152505050608001529392505050565b60008261240b57634e487b7160e01b600052601260045260246000fd5b500490565b8082028115828204841417610809576108096122eb565b81810381811115610809576108096122eb56fea2646970667358221220954ed42fcb2d349c908a13ccdd80f3bfc8f861781c25eb242b7bf3164f7a34a164736f6c63430008110033

Deployed Bytecode

0x6080604052600436106102075760003560e01c80636519aa24116101185780638da5cb5b116100a0578063a9059cbb1161006f578063a9059cbb146106a1578063b7bda68f146106c1578063db8d55f1146106e1578063dd62ed3e14610723578063f2fde38b1461074357600080fd5b80638da5cb5b1461062e5780638ebfc7961461064c57806395d89b411461066c578063a457c2d71461068157600080fd5b8063715018a6116100e7578063715018a61461057657806373d002241461058b57806386f6c3c1146105ce5780638a2ade58146105ee5780638d7a8ba71461060e57600080fd5b80636519aa24146104e05780636745297e146105005780636d61c49d1461052057806370a082311461054057600080fd5b8063313ce5671161019b57806342966c681161016a57806342966c681461044b57806349bd5a5e1461046b57806349d3c1351461048b5780634d0047ee146104a0578063526731e6146104c057600080fd5b8063313ce567146103a9578063361f4fb4146103cb57806339509351146103fb578063398daa851461041b57600080fd5b80631694505e116101d75780631694505e1461031057806318160ddd1461034857806323b872dd146103675780632d4862481461038757600080fd5b806220a4031461021357806303f3d3101461028057806306fdde03146102be578063095ea7b3146102e057600080fd5b3661020e57005b600080fd5b34801561021f57600080fd5b5061026061022e366004612050565b6001600160a01b0316600090815260116020908152604080832054601283528184205460139093529220549192909190565b604080519384526020840192909252908201526060015b60405180910390f35b34801561028c57600080fd5b50600d54600e54600f5460105460ff166040805194855260208501939093529183015215156060820152608001610277565b3480156102ca57600080fd5b506102d3610763565b604051610277919061206d565b3480156102ec57600080fd5b506103006102fb3660046120bb565b6107f5565b6040519015158152602001610277565b34801561031c57600080fd5b50601854610330906001600160a01b031681565b6040516001600160a01b039091168152602001610277565b34801561035457600080fd5b506003545b604051908152602001610277565b34801561037357600080fd5b506103006103823660046120e7565b61080f565b34801561039357600080fd5b506103a76103a2366004612128565b610833565b005b3480156103b557600080fd5b5060065460405160ff9091168152602001610277565b3480156103d757600080fd5b506103006103e6366004612050565b60096020526000908152604090205460ff1681565b34801561040757600080fd5b506103006104163660046120bb565b61087a565b34801561042757600080fd5b50610300610436366004612050565b60086020526000908152604090205460ff1681565b34801561045757600080fd5b506103a7610466366004612173565b61089c565b34801561047757600080fd5b50601954610330906001600160a01b031681565b34801561049757600080fd5b506103a76108a9565b3480156104ac57600080fd5b50600c54610330906001600160a01b031681565b3480156104cc57600080fd5b506103a76104db36600461218c565b6108bb565b3480156104ec57600080fd5b506103a76104fb366004612173565b6109a9565b34801561050c57600080fd5b506103a761051b3660046121d3565b610b0b565b34801561052c57600080fd5b506103a761053b366004612214565b610c6b565b34801561054c57600080fd5b5061035961055b366004612050565b6001600160a01b031660009081526001602052604090205490565b34801561058257600080fd5b506103a7610c81565b34801561059757600080fd5b506014546015546016546017546105ae9392919084565b604080519485526020850193909352918301526060820152608001610277565b3480156105da57600080fd5b506103a76105e9366004612240565b610c95565b3480156105fa57600080fd5b50600a54610330906001600160a01b031681565b34801561061a57600080fd5b506103a7610629366004612283565b610fb3565b34801561063a57600080fd5b506000546001600160a01b0316610330565b34801561065857600080fd5b506103a7610667366004612283565b610fe6565b34801561067857600080fd5b506102d3611019565b34801561068d57600080fd5b5061030061069c3660046120bb565b611028565b3480156106ad57600080fd5b506103006106bc3660046120bb565b6110a3565b3480156106cd57600080fd5b50600b54610330906001600160a01b031681565b3480156106ed57600080fd5b506106f66110b1565b604080519687526020870195909552938501929092526060840152608083015260a082015260c001610277565b34801561072f57600080fd5b5061035961073e36600461218c565b6111bd565b34801561074f57600080fd5b506103a761075e366004612050565b6111e8565b606060048054610772906122b1565b80601f016020809104026020016040519081016040528092919081815260200182805461079e906122b1565b80156107eb5780601f106107c0576101008083540402835291602001916107eb565b820191906000526020600020905b8154815290600101906020018083116107ce57829003601f168201915b5050505050905090565b600033610803818585611271565b60019150505b92915050565b60003361081d858285611396565b610828858585611410565b506001949350505050565b61083b61195f565b600a80546001600160a01b039485166001600160a01b031991821617909155600b805493851693821693909317909255600c8054919093169116179055565b60003361080381858561088d83836111bd565b6108979190612301565b611271565b6108a633826119b9565b50565b6108b161195f565b476108a681611ae5565b6108c361195f565b6040516370a0823160e01b81523060048201526001600160a01b0382169063a9059cbb90849083906370a0823190602401602060405180830381865afa158015610911573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109359190612314565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af1158015610980573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109a4919061232d565b505050565b6109b161195f565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106109e6576109e661234a565b6001600160a01b03928316602091820292909201810191909152601854604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015610a3f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a639190612360565b81600181518110610a7657610a7661234a565b6001600160a01b039283166020918202929092010152601854610a9c9130911684611271565b60185460405163791ac94760e01b81526001600160a01b039091169063791ac94790610ad590859060009086903090429060040161237d565b600060405180830381600087803b158015610aef57600080fd5b505af1158015610b03573d6000803e3d6000fd5b505050505050565b610b1361195f565b600354610b219060c861125e565b841015610b7f5760405162461bcd60e51b815260206004820152602160248201527f427579207472616e73616374696f6e206c696d697420697320746f6f206c6f776044820152602160f81b60648201526084015b60405180910390fd5b600354610b8e9061019061125e565b831015610be85760405162461bcd60e51b815260206004820152602260248201527f53656c6c207472616e73616374696f6e206c696d697420697320746f6f206c6f604482015261772160f01b6064820152608401610b76565b610708821115610c495760405162461bcd60e51b815260206004820152602660248201527f436f6f6c646f776e2073686f756c64206265203330206d696e75746573206f72604482015265206c6573732160d01b6064820152608401610b76565b600d93909355600e91909155600f556010805460ff1916911515919091179055565b610c7361195f565b601492909255601555601655565b610c8961195f565b610c936000611caf565b565b610c9d61195f565b6105dc861115610cef5760405162461bcd60e51b815260206004820152601a60248201527f4d61726b6574696e672066656520697320746f6f2068696768210000000000006044820152606401610b76565b6105dc851115610d385760405162461bcd60e51b81526020600482015260146024820152734465762066656520697320746f6f20686967682160601b6044820152606401610b76565b6105dc841115610d855760405162461bcd60e51b81526020600482015260186024820152774661726d696e672066656520697320746f6f20686967682160401b6044820152606401610b76565b6105dc831115610dd75760405162461bcd60e51b815260206004820152601a60248201527f4d61726b6574696e672066656520697320746f6f2068696768210000000000006044820152606401610b76565b6105dc821115610e205760405162461bcd60e51b81526020600482015260146024820152734465762066656520697320746f6f20686967682160601b6044820152606401610b76565b6105dc811115610e6d5760405162461bcd60e51b81526020600482015260186024820152774661726d696e672066656520697320746f6f20686967682160401b6044820152606401610b76565b856007604051610e8f906b6d61726b6574696e6742757960a01b8152600c0190565b90815260408051918290036020908101832093909355656c697142757960d01b82526007600683018190528151928390036026018320899055696661726d696e6742757960b01b8352600a8301819052815192839003602a0183208890556c1b585c9ad95d1a5b99d4d95b1b609a1b8352600d8301819052815192839003602d018320879055661b1a5c54d95b1b60ca1b835282810181905281519283900360270183208690556a19985c9b5a5b99d4d95b1b60aa1b8352600b830152805191829003602b018220849055888252918101879052808201869052606081018590526080810184905260a0810183905290517f9d11d0c09898a8e5bed054b945fc074be173cbca95feb490df408807b1948c569160c0908290030190a1505050505050565b610fbb61195f565b6001600160a01b03919091166000908152600960205260409020805460ff1916911515919091179055565b610fee61195f565b6001600160a01b03919091166000908152600860205260409020805460ff1916911515919091179055565b606060058054610772906122b1565b6000338161103682866111bd565b9050838110156110965760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610b76565b6108288286868403611271565b600033610803818585611410565b60008060008060008060076040516110db906b6d61726b6574696e6742757960a01b8152600c0190565b90815260405190819003602001812054656c697142757960d01b82529060079060060190815260405190819003602001812054696661726d696e6742757960b01b825290600790600a01908152604051908190036020018120546c1b585c9ad95d1a5b99d4d95b1b609a1b825290600790600d0190815260405190819003602001812054661b1a5c54d95b1b60ca1b8252906007908101908152604051908190036020018120546a19985c9b5a5b99d4d95b1b60aa1b825290600790600b01908152602001604051809103902054955095509550955095509550909192939495565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6111f061195f565b6001600160a01b0381166112555760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b76565b6108a681611caf565b600061126a82846123ee565b9392505050565b6001600160a01b0383166112d35760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610b76565b6001600160a01b0382166113345760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610b76565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b60006113a284846111bd565b9050600019811461140a57818110156113fd5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610b76565b61140a8484848403611271565b50505050565b6001600160a01b0383166114745760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610b76565b6001600160a01b0382166114d65760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610b76565b6001600160a01b0383166000908152600160205260409020548181101561154e5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610b76565b601954600090819081906001906001600160a01b0390811690891603611601576115788787611cff565b61158460008888611e0e565b6040516b6d61726b6574696e6742757960a01b8152600790600c0190815260405190819003602001812054656c697142757960d01b8252945060079060060190815260405190819003602001812054696661726d696e6742757960b01b82529350600790600a0190815260200160405180910390205491506116a8565b6019546001600160a01b03908116908816036116a8576116218887611f0c565b61162d60018988611e0e565b6040516c1b585c9ad95d1a5b99d4d95b1b609a1b8152600790600d0190815260405190819003602001812054661b1a5c54d95b1b60ca1b825294506007908101908152604051908190036020018120546a19985c9b5a5b99d4d95b1b60aa1b82529350600790600b0190815260200160405180910390205491505b6001600160a01b0380891660009081526001602090815260408083208a8a039055928a16825260089052205460ff16806116fa57506001600160a01b03881660009081526008602052604090205460ff165b15611703575060005b80801561173457506019546001600160a01b038881169116148061173457506019546001600160a01b038981169116145b156118d95761175d60405180606001604052806000815260200160008152602001600081525090565b61177361271061176d8988612017565b9061125e565b815261178561271061176d8987612017565b602082015261179a61271061176d8986612017565b60408201819052602082015182516000926117c09290916117ba91612023565b90612023565b90506117cc888261202f565b3060009081526001602052604081208054929a5083929091906117f0908490612301565b909155505060405181815230906001600160a01b038c16907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3306000908152600160205260409020546014548111801561186457506016546015546118619190612301565b42115b801561187d57506019546001600160a01b038b81169116145b156118d557601454611899906103e89061176d9061044c612017565b8111156118b1576014546118ac906109b1565b6118ba565b6118ba816109b1565b4260155560175447908111156118d3576118d381611ae5565b505b5050505b6001600160a01b03871660009081526001602052604081208054889290611901908490612301565b92505081905550866001600160a01b0316886001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8860405161194d91815260200190565b60405180910390a35050505050505050565b6000546001600160a01b03163314610c935760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b76565b6001600160a01b038216611a195760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610b76565b6001600160a01b03821660009081526001602052604090205481811015611a8d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610b76565b6001600160a01b03831660008181526001602090815260408083208686039055600380548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101611389565b600c546000906001600160a01b0316611aff83600361125e565b604051600081818185875af1925050503d8060008114611b3b576040519150601f19603f3d011682016040523d82523d6000602084013e611b40565b606091505b5050600a549091506000906001600160a01b0316611b5f84600361125e565b604051600081818185875af1925050503d8060008114611b9b576040519150601f19603f3d011682016040523d82523d6000602084013e611ba0565b606091505b5050600b549091506000906001600160a01b0316611bbf85600361125e565b604051600081818185875af1925050503d8060008114611bfb576040519150601f19603f3d011682016040523d82523d6000602084013e611c00565b606091505b505090507fc7de915a10d9bde706d4e9578480e7c0356650ad28f9242079c04daaf8a93bc183604051611c37911515815260200190565b60405180910390a160405182151581527fc7de915a10d9bde706d4e9578480e7c0356650ad28f9242079c04daaf8a93bc19060200160405180910390a160405181151581527fc7de915a10d9bde706d4e9578480e7c0356650ad28f9242079c04daaf8a93bc19060200160405180910390a150505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60105460ff16151560011480611d3257506001600160a01b03821660009081526009602052604090205460ff1615156001145b80611d605750600d546001600160a01b038316600090815260116020526040902054611d5e9083612023565b105b80611dbe5750600d546001600160a01b038316600090815260116020526040902054611d8c9083612023565b118015611dbe5750600f546001600160a01b0383166000908152601360205260409020544291611dbc9190612023565b105b611e0a5760405162461bcd60e51b815260206004820152601e60248201527f427579207472616e73616374696f6e206c696d697420726561636865642100006044820152606401610b76565b5050565b600f546001600160a01b0383166000908152601360205260409020544291611e369190612023565b1015611e855782611e62576001600160a01b038216600090815260116020526040902081905580611e7f565b6001600160a01b0382166000908152601260205260409020819055805b50611eee565b82611ebd576001600160a01b03821660009081526011602052604081208054839290611eb2908490612301565b925050819055611eec565b6001600160a01b03821660009081526012602052604081208054839290611ee5908490612301565b9250508190555b505b506001600160a01b0316600090815260136020526040902042905550565b60105460ff16151560011480611f3f57506001600160a01b03821660009081526009602052604090205460ff1615156001145b80611f6d5750600e546001600160a01b038316600090815260126020526040902054611f6b9083612023565b105b80611fcb5750600e546001600160a01b038316600090815260126020526040902054611f999083612023565b118015611fcb5750600f546001600160a01b0383166000908152601360205260409020544291611fc99190612023565b105b611e0a5760405162461bcd60e51b815260206004820152601f60248201527f53656c6c207472616e73616374696f6e206c696d6974207265616368656421006044820152606401610b76565b600061126a8284612410565b600061126a8284612301565b600061126a8284612427565b6001600160a01b03811681146108a657600080fd5b60006020828403121561206257600080fd5b813561126a8161203b565b600060208083528351808285015260005b8181101561209a5785810183015185820160400152820161207e565b506000604082860101526040601f19601f8301168501019250505092915050565b600080604083850312156120ce57600080fd5b82356120d98161203b565b946020939093013593505050565b6000806000606084860312156120fc57600080fd5b83356121078161203b565b925060208401356121178161203b565b929592945050506040919091013590565b60008060006060848603121561213d57600080fd5b83356121488161203b565b925060208401356121588161203b565b915060408401356121688161203b565b809150509250925092565b60006020828403121561218557600080fd5b5035919050565b6000806040838503121561219f57600080fd5b82356121aa8161203b565b915060208301356121ba8161203b565b809150509250929050565b80151581146108a657600080fd5b600080600080608085870312156121e957600080fd5b8435935060208501359250604085013591506060850135612209816121c5565b939692955090935050565b60008060006060848603121561222957600080fd5b505081359360208301359350604090920135919050565b60008060008060008060c0878903121561225957600080fd5b505084359660208601359650604086013595606081013595506080810135945060a0013592509050565b6000806040838503121561229657600080fd5b82356122a18161203b565b915060208301356121ba816121c5565b600181811c908216806122c557607f821691505b6020821081036122e557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b80820180821115610809576108096122eb565b60006020828403121561232657600080fd5b5051919050565b60006020828403121561233f57600080fd5b815161126a816121c5565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561237257600080fd5b815161126a8161203b565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156123cd5784516001600160a01b0316835293830193918301916001016123a8565b50506001600160a01b03969096166060850152505050608001529392505050565b60008261240b57634e487b7160e01b600052601260045260246000fd5b500490565b8082028115828204841417610809576108096122eb565b81810381811115610809576108096122eb56fea2646970667358221220954ed42fcb2d349c908a13ccdd80f3bfc8f861781c25eb242b7bf3164f7a34a164736f6c63430008110033

Deployed Bytecode Sourcemap

17954:21727:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27122:199;;;;;;;;;;-1:-1:-1;27122:199:0;;;;;:::i;:::-;-1:-1:-1;;;;;27236:23:0;27181:9;27236:23;;;:13;:23;;;;;;;;;27261:14;:24;;;;;;27287:15;:25;;;;;;27236:23;;27261:24;;27287:25;27122:199;;;;;604:25:1;;;660:2;645:18;;638:34;;;;688:18;;;681:34;592:2;577:18;27122:199:0;;;;;;;;25035:207;;;;;;;;;;-1:-1:-1;25158:8:0;:17;25177:18;;25197:17;;25216;;;;25035:207;;;951:25:1;;;1007:2;992:18;;985:34;;;;1035:18;;;1028:34;1105:14;1098:22;1093:2;1078:18;;1071:50;938:3;923:19;25035:207:0;726:401:1;29172:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;30794:201::-;;;;;;;;;;-1:-1:-1;30794:201:0;;;;;:::i;:::-;;:::i;:::-;;;2170:14:1;;2163:22;2145:41;;2133:2;2118:18;30794:201:0;2005:187:1;19306:41:0;;;;;;;;;;-1:-1:-1;19306:41:0;;;;-1:-1:-1;;;;;19306:41:0;;;;;;-1:-1:-1;;;;;2387:32:1;;;2369:51;;2357:2;2342:18;19306:41:0;2197:229:1;29614:108:0;;;;;;;;;;-1:-1:-1;29702:12:0;;29614:108;;;2577:25:1;;;2565:2;2550:18;29614:108:0;2431:177:1;31576:295:0;;;;;;;;;;-1:-1:-1;31576:295:0;;;;;:::i;:::-;;:::i;23357:254::-;;;;;;;;;;-1:-1:-1;23357:254:0;;;;;:::i;:::-;;:::i;:::-;;29505:100;;;;;;;;;;-1:-1:-1;29588:9:0;;29505:100;;29588:9;;;;3750:36:1;;3738:2;3723:18;29505:100:0;3608:184:1;18502:46:0;;;;;;;;;;-1:-1:-1;18502:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;32281:238;;;;;;;;;;-1:-1:-1;32281:238:0;;;;;:::i;:::-;;:::i;18453:42::-;;;;;;;;;;-1:-1:-1;18453:42:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;39587:91;;;;;;;;;;-1:-1:-1;39587:91:0;;;;;:::i;:::-;;:::i;19354:28::-;;;;;;;;;;-1:-1:-1;19354:28:0;;;;-1:-1:-1;;;;;19354:28:0;;;28334:169;;;;;;;;;;;;;:::i;18652:46::-;;;;;;;;;;-1:-1:-1;18652:46:0;;;;-1:-1:-1;;;;;18652:46:0;;;28950:151;;;;;;;;;;-1:-1:-1;28950:151:0;;;;;:::i;:::-;;:::i;27846:479::-;;;;;;;;;;-1:-1:-1;27846:479:0;;;;;:::i;:::-;;:::i;24109:564::-;;;;;;;;;;-1:-1:-1;24109:564:0;;;;;:::i;:::-;;:::i;24723:231::-;;;;;;;;;;-1:-1:-1;24723:231:0;;;;;:::i;:::-;;:::i;29731:127::-;;;;;;;;;;-1:-1:-1;29731:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;29832:18:0;29805:7;29832:18;;;:9;:18;;;;;;;29731:127;10086:103;;;;;;;;;;;;;:::i;19269:27::-;;;;;;;;;;-1:-1:-1;19269:27:0;;;;;;;;;;;;;;;;;;;5731:25:1;;;5787:2;5772:18;;5765:34;;;;5815:18;;;5808:34;5873:2;5858:18;;5851:34;5718:3;5703:19;19269:27:0;5500:391:1;21701:1072:0;;;;;;;;;;-1:-1:-1;21701:1072:0;;;;;:::i;:::-;;:::i;18558:42::-;;;;;;;;;;-1:-1:-1;18558:42:0;;;;-1:-1:-1;;;;;18558:42:0;;;23904:127;;;;;;;;;;-1:-1:-1;23904:127:0;;;;;:::i;:::-;;:::i;9436:87::-;;;;;;;;;;-1:-1:-1;9482:7:0;9509:6;-1:-1:-1;;;;;9509:6:0;9436:87;;23697:119;;;;;;;;;;-1:-1:-1;23697:119:0;;;;;:::i;:::-;;:::i;29392:104::-;;;;;;;;;;;;;:::i;33023:437::-;;;;;;;;;;-1:-1:-1;33023:437:0;;;;;:::i;:::-;;:::i;30065:193::-;;;;;;;;;;-1:-1:-1;30065:193:0;;;;;:::i;:::-;;:::i;18607:38::-;;;;;;;;;;-1:-1:-1;18607:38:0;;;;-1:-1:-1;;;;;18607:38:0;;;22842:447;;;;;;;;;;;;;:::i;:::-;;;;7098:25:1;;;7154:2;7139:18;;7132:34;;;;7182:18;;;7175:34;;;;7240:2;7225:18;;7218:34;7283:3;7268:19;;7261:35;7327:3;7312:19;;7305:35;7085:3;7070:19;22842:447:0;6811:535:1;30322:151:0;;;;;;;;;;-1:-1:-1;30322:151:0;;;;;:::i;:::-;;:::i;10345:201::-;;;;;;;;;;-1:-1:-1;10345:201:0;;;;;:::i;:::-;;:::i;29172:100::-;29226:13;29259:5;29252:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29172:100;:::o;30794:201::-;30877:4;8003:10;30933:32;8003:10;30949:7;30958:6;30933:8;:32::i;:::-;30983:4;30976:11;;;30794:201;;;;;:::o;31576:295::-;31707:4;8003:10;31765:38;31781:4;8003:10;31796:6;31765:15;:38::i;:::-;31814:27;31824:4;31830:2;31834:6;31814:9;:27::i;:::-;-1:-1:-1;31859:4:0;;31576:295;-1:-1:-1;;;;31576:295:0:o;23357:254::-;9321:13;:11;:13::i;:::-;23485:14:::1;:32:::0;;-1:-1:-1;;;;;23485:32:0;;::::1;-1:-1:-1::0;;;;;;23485:32:0;;::::1;;::::0;;;23528:10:::1;:24:::0;;;;::::1;::::0;;::::1;::::0;;;::::1;::::0;;;23563:18:::1;:40:::0;;;;;::::1;::::0;::::1;;::::0;;23357:254::o;32281:238::-;32369:4;8003:10;32425:64;8003:10;32441:7;32478:10;32450:25;8003:10;32441:7;32450:9;:25::i;:::-;:38;;;;:::i;:::-;32425:8;:64::i;39587:91::-;39643:27;8003:10;39663:6;39643:5;:27::i;:::-;39587:91;:::o;28334:169::-;9321:13;:11;:13::i;:::-;28424:21:::1;28456:39;28424:21:::0;28456:16:::1;:39::i;28950:151::-:0;9321:13;:11;:13::i;:::-;29061:31:::1;::::0;-1:-1:-1;;;29061:31:0;;29086:4:::1;29061:31;::::0;::::1;2369:51:1::0;-1:-1:-1;;;;;29040:15:0;::::1;::::0;::::1;::::0;29056:3;;29040:15;;29061:16:::1;::::0;2342:18:1;;29061:31:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;29040:53;::::0;-1:-1:-1;;;;;;29040:53:0::1;::::0;;;;;;-1:-1:-1;;;;;8780:32:1;;;29040:53:0::1;::::0;::::1;8762:51:1::0;8829:18;;;8822:34;8735:18;;29040:53:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;28950:151:::0;;:::o;27846:479::-;9321:13;:11;:13::i;:::-;27952:16:::1;::::0;;27966:1:::1;27952:16:::0;;;;;::::1;::::0;;27928:21:::1;::::0;27952:16:::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;27952:16:0::1;27928:40;;27997:4;27979;27984:1;27979:7;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;27979:23:0;;::::1;:7;::::0;;::::1;::::0;;;;;;:23;;;;28023:15:::1;::::0;:22:::1;::::0;;-1:-1:-1;;;28023:22:0;;;;:15;;;::::1;::::0;:20:::1;::::0;:22:::1;::::0;;::::1;::::0;27979:7;;28023:22;;;;;:15;:22:::1;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;28013:4;28018:1;28013:7;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;28013:32:0;;::::1;:7;::::0;;::::1;::::0;;;;;:32;28088:15:::1;::::0;28056:58:::1;::::0;28073:4:::1;::::0;28088:15:::1;28106:7:::0;28056:8:::1;:58::i;:::-;28125:15;::::0;:192:::1;::::0;-1:-1:-1;;;28125:192:0;;-1:-1:-1;;;;;28125:15:0;;::::1;::::0;:66:::1;::::0;:192:::1;::::0;28206:7;;28125:15:::1;::::0;28244:4;;28271::::1;::::0;28291:15:::1;::::0;28125:192:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;27917:408;27846:479:::0;:::o;24109:564::-;9321:13;:11;:13::i;:::-;24246:12:::1;::::0;:21:::1;::::0;24263:3:::1;24246:16;:21::i;:::-;24233:9;:34;;24225:80;;;::::0;-1:-1:-1;;;24225:80:0;;10824:2:1;24225:80:0::1;::::0;::::1;10806:21:1::0;10863:2;10843:18;;;10836:30;10902:34;10882:18;;;10875:62;-1:-1:-1;;;10953:18:1;;;10946:31;10994:19;;24225:80:0::1;;;;;;;;;24346:12;::::0;:21:::1;::::0;24363:3:::1;24346:16;:21::i;:::-;24332:10;:35;;24324:82;;;::::0;-1:-1:-1;;;24324:82:0;;11226:2:1;24324:82:0::1;::::0;::::1;11208:21:1::0;11265:2;11245:18;;;11238:30;11304:34;11284:18;;;11277:62;-1:-1:-1;;;11355:18:1;;;11348:32;11397:19;;24324:82:0::1;11024:398:1::0;24324:82:0::1;24447:10;24434:9;:23;;24426:74;;;::::0;-1:-1:-1;;;24426:74:0;;11629:2:1;24426:74:0::1;::::0;::::1;11611:21:1::0;11668:2;11648:18;;;11641:30;11707:34;11687:18;;;11680:62;-1:-1:-1;;;11758:18:1;;;11751:36;11804:19;;24426:74:0::1;11427:402:1::0;24426:74:0::1;24514:8;:29:::0;;;;24554:18;:31;;;;24596:17;:29;24636:17;:29;;-1:-1:-1;;24636:29:0::1;::::0;::::1;;::::0;;;::::1;::::0;;24109:564::o;24723:231::-;9321:13;:11;:13::i;:::-;24825:10:::1;:39:::0;;;;24875:19;:31;24917:20;:29;24723:231::o;10086:103::-;9321:13;:11;:13::i;:::-;10151:30:::1;10178:1;10151:18;:30::i;:::-;10086:103::o:0;21701:1072::-;9321:13;:11;:13::i;:::-;21941:4:::1;21924:13;:21;;21916:60;;;::::0;-1:-1:-1;;;21916:60:0;;12036:2:1;21916:60:0::1;::::0;::::1;12018:21:1::0;12075:2;12055:18;;;12048:30;12114:28;12094:18;;;12087:56;12160:18;;21916:60:0::1;11834:350:1::0;21916:60:0::1;22006:4;21995:7;:15;;21987:48;;;::::0;-1:-1:-1;;;21987:48:0;;12391:2:1;21987:48:0::1;::::0;::::1;12373:21:1::0;12430:2;12410:18;;;12403:30;-1:-1:-1;;;12449:18:1;;;12442:50;12509:18;;21987:48:0::1;12189:344:1::0;21987:48:0::1;22069:4;22054:11;:19;;22046:56;;;::::0;-1:-1:-1;;;22046:56:0;;12740:2:1;22046:56:0::1;::::0;::::1;12722:21:1::0;12779:2;12759:18;;;12752:30;-1:-1:-1;;;12798:18:1;;;12791:54;12862:18;;22046:56:0::1;12538:348:1::0;22046:56:0::1;22139:4;22121:14;:22;;22113:61;;;::::0;-1:-1:-1;;;22113:61:0;;12036:2:1;22113:61:0::1;::::0;::::1;12018:21:1::0;12075:2;12055:18;;;12048:30;12114:28;12094:18;;;12087:56;12160:18;;22113:61:0::1;11834:350:1::0;22113:61:0::1;22205:4;22193:8;:16;;22185:49;;;::::0;-1:-1:-1;;;22185:49:0;;12391:2:1;22185:49:0::1;::::0;::::1;12373:21:1::0;12430:2;12410:18;;;12403:30;-1:-1:-1;;;12449:18:1;;;12442:50;12509:18;;22185:49:0::1;12189:344:1::0;22185:49:0::1;22269:4;22253:12;:20;;22245:57;;;::::0;-1:-1:-1;;;22245:57:0;;12740:2:1;22245:57:0::1;::::0;::::1;12722:21:1::0;12779:2;12759:18;;;12752:30;-1:-1:-1;;;12798:18:1;;;12791:54;12862:18;;22245:57:0::1;12538:348:1::0;22245:57:0::1;22341:13;22316:6;:22;;;;-1:-1:-1::0;;;13093:27:1;;13145:2;13136:12;;12891:263;22316:22:0::1;::::0;;;::::1;::::0;;;;;;::::1;::::0;;;;;:38;;;;-1:-1:-1;;;13361:21:1;;22365:6:0::1;13407:1:1::0;13398:11;;22365:16:0;;;;;;;;;;;;;:26;;;-1:-1:-1;;;13622:25:1;;13672:2;13663:12;;22402:20:0;;;;;;;;;;;;;:34;;;-1:-1:-1;;;13888:28:1;;13941:2;13932:12;;22450:23:0;;;;;;;;;;;;;:40;;;-1:-1:-1;;;14157:22:1;;14195:11;;;22501:17:0;;;;;;;;;;;;;:28;;;-1:-1:-1;;;14419:26:1;;14470:2;14461:12;;22540:21:0;;;;;;;;;;;:36;;;7098:25:1;;;7139:18;;;7132:34;;;7182:18;;;7175:34;;;7240:2;7225:18;;7218:34;;;7283:3;7268:19;;7261:35;;;7327:3;7312:19;;7305:35;;;22595:170:0;;::::1;::::0;7085:3:1;22595:170:0;;;;;;::::1;21701:1072:::0;;;;;;:::o;23904:127::-;9321:13;:11;:13::i;:::-;-1:-1:-1;;;;;23991:23:0;;;::::1;;::::0;;;:13:::1;:23;::::0;;;;:32;;-1:-1:-1;;23991:32:0::1;::::0;::::1;;::::0;;;::::1;::::0;;23904:127::o;23697:119::-;9321:13;:11;:13::i;:::-;-1:-1:-1;;;;;23780:19:0;;;::::1;;::::0;;;:9:::1;:19;::::0;;;;:28;;-1:-1:-1;;23780:28:0::1;::::0;::::1;;::::0;;;::::1;::::0;;23697:119::o;29392:104::-;29448:13;29481:7;29474:14;;;;;:::i;33023:437::-;33116:4;8003:10;33116:4;33199:25;8003:10;33216:7;33199:9;:25::i;:::-;33172:52;;33263:15;33243:16;:35;;33235:85;;;;-1:-1:-1;;;33235:85:0;;14686:2:1;33235:85:0;;;14668:21:1;14725:2;14705:18;;;14698:30;14764:34;14744:18;;;14737:62;-1:-1:-1;;;14815:18:1;;;14808:35;14860:19;;33235:85:0;14484:401:1;33235:85:0;33356:60;33365:5;33372:7;33400:15;33381:16;:34;33356:8;:60::i;30065:193::-;30144:4;8003:10;30200:28;8003:10;30217:2;30221:6;30200:9;:28::i;22842:447::-;22891:17;22919:11;22941:15;22967:18;22996:12;23019:16;23076:6;:22;;;;-1:-1:-1;;;13093:27:1;;13145:2;13136:12;;12891:263;23076:22:0;;;;;;;;;;;;;;;-1:-1:-1;;;13361:21:1;;23076:22:0;23113:6;;13407:1:1;13398:11;23113:16:0;;;;;;;;;;;;;;-1:-1:-1;;;13622:25:1;;23113:16:0;23144:6;;13672:2:1;13663:12;23144:20:0;;;;;;;;;;;;;;-1:-1:-1;;;13888:28:1;;23144:20:0;23179:6;;13941:2:1;13932:12;23179:23:0;;;;;;;;;;;;;;-1:-1:-1;;;14157:22:1;;23179:23:0;23217:6;;14195:11:1;;23217:17:0;;;;;;;;;;;;;;-1:-1:-1;;;14419:26:1;;23217:17:0;23249:6;;14470:2:1;14461:12;23249:21:0;;;;;;;;;;;;;23054:227;;;;;;;;;;;;22842:447;;;;;;:::o;30322:151::-;-1:-1:-1;;;;;30438:18:0;;;30411:7;30438:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;30322:151::o;10345:201::-;9321:13;:11;:13::i;:::-;-1:-1:-1;;;;;10434:22:0;::::1;10426:73;;;::::0;-1:-1:-1;;;10426:73:0;;15092:2:1;10426:73:0::1;::::0;::::1;15074:21:1::0;15131:2;15111:18;;;15104:30;15170:34;15150:18;;;15143:62;-1:-1:-1;;;15221:18:1;;;15214:36;15267:19;;10426:73:0::1;14890:402:1::0;10426:73:0::1;10510:28;10529:8;10510:18;:28::i;4029:98::-:0;4087:7;4114:5;4118:1;4114;:5;:::i;:::-;4107:12;4029:98;-1:-1:-1;;;4029:98:0:o;37456:381::-;-1:-1:-1;;;;;37592:19:0;;37584:68;;;;-1:-1:-1;;;37584:68:0;;15721:2:1;37584:68:0;;;15703:21:1;15760:2;15740:18;;;15733:30;15799:34;15779:18;;;15772:62;-1:-1:-1;;;15850:18:1;;;15843:34;15894:19;;37584:68:0;15519:400:1;37584:68:0;-1:-1:-1;;;;;37671:21:0;;37663:68;;;;-1:-1:-1;;;37663:68:0;;16126:2:1;37663:68:0;;;16108:21:1;16165:2;16145:18;;;16138:30;16204:34;16184:18;;;16177:62;-1:-1:-1;;;16255:18:1;;;16248:32;16297:19;;37663:68:0;15924:398:1;37663:68:0;-1:-1:-1;;;;;37745:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;37797:32;;2577:25:1;;;37797:32:0;;2550:18:1;37797:32:0;;;;;;;;37456:381;;;:::o;38129:453::-;38264:24;38291:25;38301:5;38308:7;38291:9;:25::i;:::-;38264:52;;-1:-1:-1;;38331:16:0;:37;38327:248;;38413:6;38393:16;:26;;38385:68;;;;-1:-1:-1;;;38385:68:0;;16529:2:1;38385:68:0;;;16511:21:1;16568:2;16548:18;;;16541:30;16607:31;16587:18;;;16580:59;16656:18;;38385:68:0;16327:353:1;38385:68:0;38497:51;38506:5;38513:7;38541:6;38522:16;:25;38497:8;:51::i;:::-;38253:329;38129:453;;;:::o;33940:3077::-;-1:-1:-1;;;;;34071:18:0;;34063:68;;;;-1:-1:-1;;;34063:68:0;;16887:2:1;34063:68:0;;;16869:21:1;16926:2;16906:18;;;16899:30;16965:34;16945:18;;;16938:62;-1:-1:-1;;;17016:18:1;;;17009:35;17061:19;;34063:68:0;16685:401:1;34063:68:0;-1:-1:-1;;;;;34150:16:0;;34142:64;;;;-1:-1:-1;;;34142:64:0;;17293:2:1;34142:64:0;;;17275:21:1;17332:2;17312:18;;;17305:30;17371:34;17351:18;;;17344:62;-1:-1:-1;;;17422:18:1;;;17415:33;17465:19;;34142:64:0;17091:399:1;34142:64:0;-1:-1:-1;;;;;34242:15:0;;34220:19;34242:15;;;:9;:15;;;;;;34276:21;;;;34268:72;;;;-1:-1:-1;;;34268:72:0;;17697:2:1;34268:72:0;;;17679:21:1;17736:2;17716:18;;;17709:30;17775:34;17755:18;;;17748:62;-1:-1:-1;;;17826:18:1;;;17819:36;17872:19;;34268:72:0;17495:402:1;34268:72:0;34493:13;;34354:17;;;;;;34448:4;;-1:-1:-1;;;;;34493:13:0;;;34485:21;;;;34482:641;;34585:27;34601:2;34605:6;34585:15;:27::i;:::-;34630:30;34642:5;34649:2;34653:6;34630:11;:30::i;:::-;34693:22;;-1:-1:-1;;;13093:27:1;;34693:6:0;;13145:2:1;13136:12;34693:22:0;;;;;;;;;;;;;;-1:-1:-1;;;13361:21:1;;34693:22:0;-1:-1:-1;34739:6:0;;13407:1:1;13398:11;34739:16:0;;;;;;;;;;;;;;-1:-1:-1;;;13622:25:1;;34739:16:0;-1:-1:-1;34783:6:0;;13672:2:1;13663:12;34783:20:0;;;;;;;;;;;;;34770:33;;34482:641;;;34856:13;;-1:-1:-1;;;;;34856:13:0;;;34850:19;;;;34847:276;;34886:30;34903:4;34909:6;34886:16;:30::i;:::-;34934:31;34946:4;34952;34958:6;34934:11;:31::i;:::-;34998:23;;-1:-1:-1;;;13888:28:1;;34998:6:0;;13941:2:1;13932:12;34998:23:0;;;;;;;;;;;;;;-1:-1:-1;;;14157:22:1;;34998:23:0;-1:-1:-1;35045:6:0;;14195:11:1;;35045:17:0;;;;;;;;;;;;;;-1:-1:-1;;;14419:26:1;;35045:17:0;-1:-1:-1;35090:6:0;;14470:2:1;14461:12;35090:21:0;;;;;;;;;;;;;35077:34;;34847:276;-1:-1:-1;;;;;35161:15:0;;;;;;;:9;:15;;;;;;;;35179:20;;;35161:38;;35227:13;;;;;:9;:13;;;;;;;:32;;-1:-1:-1;;;;;;35244:15:0;;;;;;:9;:15;;;;;;;;35227:32;35224:79;;;-1:-1:-1;35286:5:0;35224:79;35319:7;:57;;;;-1:-1:-1;35337:13:0;;-1:-1:-1;;;;;35331:19:0;;;35337:13;;35331:19;;:44;;-1:-1:-1;35362:13:0;;-1:-1:-1;;;;;35354:21:0;;;35362:13;;35354:21;35331:44;35316:1615;;;35393:25;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;35393:25:0;35458:35;35487:5;35458:24;:6;35469:12;35458:10;:24::i;:::-;:28;;:35::i;:::-;35433:60;;35527:29;35550:5;35527:18;:6;35538;35527:10;:18::i;:29::-;35508:16;;;:48;35594:33;35621:5;35594:22;:6;35605:10;35594;:22::i;:33::-;35571:20;;;:56;;;35724:16;;;;35679:22;;35645:14;;35679:106;;35571:56;;35679:62;;:44;:62::i;:::-;:84;;:106::i;:::-;35645:140;-1:-1:-1;35812:21:0;:6;35645:140;35812:10;:21::i;:::-;35869:4;35851:24;;;;:9;:24;;;;;:37;;35803:30;;-1:-1:-1;35879:9:0;;35851:24;;;:37;;35879:9;;35851:37;:::i;:::-;;;;-1:-1:-1;;35935:40:0;;2577:25:1;;;35958:4:0;;-1:-1:-1;;;;;35935:40:0;;;;;2565:2:1;2550:18;35935:40:0;;;;;;;36079:4;36030:28;36061:24;;;:9;:24;;;;;;36148:10;:23;36125:46;;:127;;;;-1:-1:-1;36232:20:0;;36210:19;;:42;;36232:20;36210:42;:::i;:::-;36192:15;:60;36125:127;:167;;;;-1:-1:-1;36279:13:0;;-1:-1:-1;;;;;36273:19:0;;;36279:13;;36273:19;36125:167;36103:817;;;36397:10;:23;:43;;36435:4;;36397:33;;36425:4;36397:27;:33::i;:43::-;36374:20;:66;36371:248;;;36485:10;:23;36465:44;;:19;:44::i;:::-;36371:248;;;36558:41;36578:20;36558:19;:41::i;:::-;36662:15;36640:19;:37;36801:20;;36731:21;;36777:44;;36774:131;;;36846:39;36863:21;36846:16;:39::i;:::-;36308:612;36103:817;35378:1553;;;35316:1615;-1:-1:-1;;;;;36944:13:0;;;;;;:9;:13;;;;;:23;;36961:6;;36944:13;:23;;36961:6;;36944:23;:::i;:::-;;;;;;;;36998:2;-1:-1:-1;;;;;36983:26:0;36992:4;-1:-1:-1;;;;;36983:26:0;;37002:6;36983:26;;;;2577:25:1;;2565:2;2550:18;;2431:177;36983:26:0;;;;;;;;34052:2965;;;;;33940:3077;;;:::o;9602:132::-;9482:7;9509:6;-1:-1:-1;;;;;9509:6:0;8003:10;9666:23;9658:68;;;;-1:-1:-1;;;9658:68:0;;18104:2:1;9658:68:0;;;18086:21:1;;;18123:18;;;18116:30;18182:34;18162:18;;;18155:62;18234:18;;9658:68:0;17902:356:1;38916:554:0;-1:-1:-1;;;;;39000:21:0;;38992:67;;;;-1:-1:-1;;;38992:67:0;;18465:2:1;38992:67:0;;;18447:21:1;18504:2;18484:18;;;18477:30;18543:34;18523:18;;;18516:62;-1:-1:-1;;;18594:18:1;;;18587:31;18635:19;;38992:67:0;18263:397:1;38992:67:0;-1:-1:-1;;;;;39098:18:0;;39073:22;39098:18;;;:9;:18;;;;;;39135:24;;;;39127:71;;;;-1:-1:-1;;;39127:71:0;;18867:2:1;39127:71:0;;;18849:21:1;18906:2;18886:18;;;18879:30;18945:34;18925:18;;;18918:62;-1:-1:-1;;;18996:18:1;;;18989:32;19038:19;;39127:71:0;18665:398:1;39127:71:0;-1:-1:-1;;;;;39234:18:0;;;;;;:9;:18;;;;;;;;39255:23;;;39234:44;;39373:12;:22;;;;;;;39425:37;2577:25:1;;;39234:18:0;;;39425:37;;2550:18:1;39425:37:0;2431:177:1;28512:429:0;28604:18;;28578:12;;-1:-1:-1;;;;;28604:18:0;28636:14;:7;28648:1;28636:11;:14::i;:::-;28596:59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;28694:14:0;;28577:78;;-1:-1:-1;28667:13:0;;-1:-1:-1;;;;;28694:14:0;28722;:7;28734:1;28722:11;:14::i;:::-;28686:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;28780:10:0;;28666:75;;-1:-1:-1;28753:13:0;;-1:-1:-1;;;;;28780:10:0;28804:14;:7;28816:1;28804:11;:14::i;:::-;28772:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28752:71;;;28842:19;28853:7;28842:19;;;;2170:14:1;2163:22;2145:41;;2133:2;2118:18;;2005:187;28842:19:0;;;;;;;;28877:20;;2170:14:1;;2163:22;2145:41;;28877:20:0;;2133:2:1;2118:18;28877:20:0;;;;;;;28913;;2170:14:1;;2163:22;2145:41;;28913:20:0;;2133:2:1;2118:18;28913:20:0;;;;;;;28563:378;;;28512:429;:::o;10707:191::-;10781:16;10800:6;;-1:-1:-1;;;;;10817:17:0;;;-1:-1:-1;;;;;;10817:17:0;;;;;;10850:40;;10800:6;;;;;;;10850:40;;10781:16;10850:40;10770:128;10707:191;:::o;25354:472::-;25460:17;;;;:25;;:17;:25;;:72;;-1:-1:-1;;;;;;25502:22:0;;;;;;:13;:22;;;;;;;;:30;;:22;:30;25460:72;:144;;;-1:-1:-1;25587:8:0;:17;-1:-1:-1;;;;;25549:22:0;;25587:17;25549:22;;;:13;:22;;;;;;:35;;25576:7;25549:26;:35::i;:::-;:55;25460:144;:300;;;-1:-1:-1;25660:8:0;:17;-1:-1:-1;;;;;25622:22:0;;25660:17;25622:22;;;:13;:22;;;;;;:35;;25649:7;25622:26;:35::i;:::-;:55;:137;;;;-1:-1:-1;25723:17:0;;-1:-1:-1;;;;;25694:24:0;;;;;;:15;:24;;;;;;25744:15;;25694:47;;:24;:28;:47::i;:::-;:65;25622:137;25438:380;;;;-1:-1:-1;;;25438:380:0;;19480:2:1;25438:380:0;;;19462:21:1;19519:2;19499:18;;;19492:30;19558:32;19538:18;;;19531:60;19608:18;;25438:380:0;19278:354:1;25438:380:0;25354:472;;:::o;26570:437::-;26688:17;;-1:-1:-1;;;;;26659:24:0;;;;;;:15;:24;;;;;;26709:15;;26659:47;;:24;:28;:47::i;:::-;:65;26656:288;;;26741:7;:78;;-1:-1:-1;;;;;26787:22:0;;;;;;:13;:22;;;;;:32;;;26812:7;26741:78;;;-1:-1:-1;;;;;26751:23:0;;;;;;:14;:23;;;;;:33;;;26777:7;26741:78;;26656:288;;;26852:7;:80;;-1:-1:-1;;;;;26899:22:0;;;;;;:13;:22;;;;;:33;;26925:7;;26899:22;:33;;26925:7;;26899:33;:::i;:::-;;;;;;;26852:80;;;-1:-1:-1;;;;;26862:23:0;;;;;;:14;:23;;;;;:34;;26889:7;;26862:23;:34;;26889:7;;26862:34;:::i;:::-;;;;;;;26852:80;;26656:288;-1:-1:-1;;;;;;26957:24:0;;;;;:15;:24;;;;;26984:15;26957:42;;-1:-1:-1;26570:437:0:o;25939:478::-;26046:17;;;;:25;;:17;:25;;:72;;-1:-1:-1;;;;;;26088:22:0;;;;;;:13;:22;;;;;;;;:30;;:22;:30;26046:72;:146;;;-1:-1:-1;26174:18:0;;-1:-1:-1;;;;;26135:23:0;;;;;;:14;:23;;;;;;:36;;26163:7;26135:27;:36::i;:::-;:57;26046:146;:304;;;-1:-1:-1;26249:18:0;;-1:-1:-1;;;;;26210:23:0;;;;;;:14;:23;;;;;;:36;;26238:7;26210:27;:36::i;:::-;:57;:139;;;;-1:-1:-1;26313:17:0;;-1:-1:-1;;;;;26284:24:0;;;;;;:15;:24;;;;;;26334:15;;26284:47;;:24;:28;:47::i;:::-;:65;26210:139;26024:385;;;;-1:-1:-1;;;26024:385:0;;19839:2:1;26024:385:0;;;19821:21:1;19878:2;19858:18;;;19851:30;19917:33;19897:18;;;19890:61;19968:18;;26024:385:0;19637:355:1;3629:98:0;3687:7;3714:5;3718:1;3714;:5;:::i;2889:98::-;2947:7;2974:5;2978:1;2974;:5;:::i;3271:98::-;3329:7;3356:5;3360:1;3356;:5;:::i;14:131:1:-;-1:-1:-1;;;;;89:31:1;;79:42;;69:70;;135:1;132;125:12;150:247;209:6;262:2;250:9;241:7;237:23;233:32;230:52;;;278:1;275;268:12;230:52;317:9;304:23;336:31;361:5;336:31;:::i;1132:548::-;1244:4;1273:2;1302;1291:9;1284:21;1334:6;1328:13;1377:6;1372:2;1361:9;1357:18;1350:34;1402:1;1412:140;1426:6;1423:1;1420:13;1412:140;;;1521:14;;;1517:23;;1511:30;1487:17;;;1506:2;1483:26;1476:66;1441:10;;1412:140;;;1416:3;1601:1;1596:2;1587:6;1576:9;1572:22;1568:31;1561:42;1671:2;1664;1660:7;1655:2;1647:6;1643:15;1639:29;1628:9;1624:45;1620:54;1612:62;;;;1132:548;;;;:::o;1685:315::-;1753:6;1761;1814:2;1802:9;1793:7;1789:23;1785:32;1782:52;;;1830:1;1827;1820:12;1782:52;1869:9;1856:23;1888:31;1913:5;1888:31;:::i;:::-;1938:5;1990:2;1975:18;;;;1962:32;;-1:-1:-1;;;1685:315:1:o;2613:456::-;2690:6;2698;2706;2759:2;2747:9;2738:7;2734:23;2730:32;2727:52;;;2775:1;2772;2765:12;2727:52;2814:9;2801:23;2833:31;2858:5;2833:31;:::i;:::-;2883:5;-1:-1:-1;2940:2:1;2925:18;;2912:32;2953:33;2912:32;2953:33;:::i;:::-;2613:456;;3005:7;;-1:-1:-1;;;3059:2:1;3044:18;;;;3031:32;;2613:456::o;3074:529::-;3151:6;3159;3167;3220:2;3208:9;3199:7;3195:23;3191:32;3188:52;;;3236:1;3233;3226:12;3188:52;3275:9;3262:23;3294:31;3319:5;3294:31;:::i;:::-;3344:5;-1:-1:-1;3401:2:1;3386:18;;3373:32;3414:33;3373:32;3414:33;:::i;:::-;3466:7;-1:-1:-1;3525:2:1;3510:18;;3497:32;3538:33;3497:32;3538:33;:::i;:::-;3590:7;3580:17;;;3074:529;;;;;:::o;3797:180::-;3856:6;3909:2;3897:9;3888:7;3884:23;3880:32;3877:52;;;3925:1;3922;3915:12;3877:52;-1:-1:-1;3948:23:1;;3797:180;-1:-1:-1;3797:180:1:o;4190:410::-;4280:6;4288;4341:2;4329:9;4320:7;4316:23;4312:32;4309:52;;;4357:1;4354;4347:12;4309:52;4396:9;4383:23;4415:31;4440:5;4415:31;:::i;:::-;4465:5;-1:-1:-1;4522:2:1;4507:18;;4494:32;4535:33;4494:32;4535:33;:::i;:::-;4587:7;4577:17;;;4190:410;;;;;:::o;4605:118::-;4691:5;4684:13;4677:21;4670:5;4667:32;4657:60;;4713:1;4710;4703:12;4728:446;4811:6;4819;4827;4835;4888:3;4876:9;4867:7;4863:23;4859:33;4856:53;;;4905:1;4902;4895:12;4856:53;4941:9;4928:23;4918:33;;4998:2;4987:9;4983:18;4970:32;4960:42;;5049:2;5038:9;5034:18;5021:32;5011:42;;5103:2;5092:9;5088:18;5075:32;5116:28;5138:5;5116:28;:::i;:::-;4728:446;;;;-1:-1:-1;4728:446:1;;-1:-1:-1;;4728:446:1:o;5179:316::-;5256:6;5264;5272;5325:2;5313:9;5304:7;5300:23;5296:32;5293:52;;;5341:1;5338;5331:12;5293:52;-1:-1:-1;;5364:23:1;;;5434:2;5419:18;;5406:32;;-1:-1:-1;5485:2:1;5470:18;;;5457:32;;5179:316;-1:-1:-1;5179:316:1:o;5896:523::-;6000:6;6008;6016;6024;6032;6040;6093:3;6081:9;6072:7;6068:23;6064:33;6061:53;;;6110:1;6107;6100:12;6061:53;-1:-1:-1;;6133:23:1;;;6203:2;6188:18;;6175:32;;-1:-1:-1;6254:2:1;6239:18;;6226:32;;6305:2;6290:18;;6277:32;;-1:-1:-1;6356:3:1;6341:19;;6328:33;;-1:-1:-1;6408:3:1;6393:19;6380:33;;-1:-1:-1;5896:523:1;-1:-1:-1;5896:523:1:o;6424:382::-;6489:6;6497;6550:2;6538:9;6529:7;6525:23;6521:32;6518:52;;;6566:1;6563;6556:12;6518:52;6605:9;6592:23;6624:31;6649:5;6624:31;:::i;:::-;6674:5;-1:-1:-1;6731:2:1;6716:18;;6703:32;6744:30;6703:32;6744:30;:::i;7744:380::-;7823:1;7819:12;;;;7866;;;7887:61;;7941:4;7933:6;7929:17;7919:27;;7887:61;7994:2;7986:6;7983:14;7963:18;7960:38;7957:161;;8040:10;8035:3;8031:20;8028:1;8021:31;8075:4;8072:1;8065:15;8103:4;8100:1;8093:15;7957:161;;7744:380;;;:::o;8129:127::-;8190:10;8185:3;8181:20;8178:1;8171:31;8221:4;8218:1;8211:15;8245:4;8242:1;8235:15;8261:125;8326:9;;;8347:10;;;8344:36;;;8360:18;;:::i;8391:184::-;8461:6;8514:2;8502:9;8493:7;8489:23;8485:32;8482:52;;;8530:1;8527;8520:12;8482:52;-1:-1:-1;8553:16:1;;8391:184;-1:-1:-1;8391:184:1:o;8867:245::-;8934:6;8987:2;8975:9;8966:7;8962:23;8958:32;8955:52;;;9003:1;9000;8993:12;8955:52;9035:9;9029:16;9054:28;9076:5;9054:28;:::i;9249:127::-;9310:10;9305:3;9301:20;9298:1;9291:31;9341:4;9338:1;9331:15;9365:4;9362:1;9355:15;9381:251;9451:6;9504:2;9492:9;9483:7;9479:23;9475:32;9472:52;;;9520:1;9517;9510:12;9472:52;9552:9;9546:16;9571:31;9596:5;9571:31;:::i;9637:980::-;9899:4;9947:3;9936:9;9932:19;9978:6;9967:9;9960:25;10004:2;10042:6;10037:2;10026:9;10022:18;10015:34;10085:3;10080:2;10069:9;10065:18;10058:31;10109:6;10144;10138:13;10175:6;10167;10160:22;10213:3;10202:9;10198:19;10191:26;;10252:2;10244:6;10240:15;10226:29;;10273:1;10283:195;10297:6;10294:1;10291:13;10283:195;;;10362:13;;-1:-1:-1;;;;;10358:39:1;10346:52;;10453:15;;;;10418:12;;;;10394:1;10312:9;10283:195;;;-1:-1:-1;;;;;;;10534:32:1;;;;10529:2;10514:18;;10507:60;-1:-1:-1;;;10598:3:1;10583:19;10576:35;10495:3;9637:980;-1:-1:-1;;;9637:980:1:o;15297:217::-;15337:1;15363;15353:132;;15407:10;15402:3;15398:20;15395:1;15388:31;15442:4;15439:1;15432:15;15470:4;15467:1;15460:15;15353:132;-1:-1:-1;15499:9:1;;15297:217::o;19997:168::-;20070:9;;;20101;;20118:15;;;20112:22;;20098:37;20088:71;;20139:18;;:::i;20170:128::-;20237:9;;;20258:11;;;20255:37;;;20272:18;;:::i

Swarm Source

ipfs://954ed42fcb2d349c908a13ccdd80f3bfc8f861781c25eb242b7bf3164f7a34a1
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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