ETH Price: $2,949.24 (-5.49%)
Gas: 7 Gwei

Token

Crystal Finance (CFI)
 

Overview

Max Total Supply

1,000,000,000,000 CFI

Holders

468

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
23,614,553,734.638332432454777807 CFI

Value
$0.00
0x61e393beb6e312982a450f7aec35e84012b4c7e0
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:
CFI

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

/**

Welcome To Crystal Finance, The Decentralized Perpetual Exchange. We Are The Best Way To Leverage Trade Your Favorite DeFi Tokens.
 
         
                    Website:      https://Crystal.Finance
      
                    Twitter:      https://twitter.com/CrystalPerps

                    Telegram:     https://t.me/CrystalPerps
                   
                    DOCS:         https://Docs.Crystal.Finance/
    

*/

// SPDX-License-Identifier: MIT                                                                               
                                                    
pragma solidity = 0.8.19;

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

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

interface IUniswapV2Pair {
    event Sync(uint112 reserve0, uint112 reserve1);
    function sync() external;
}

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

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

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

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

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

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

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

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

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

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

interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}


contract ERC20 is Context, IERC20, IERC20Metadata {
    using SafeMath for uint256;

    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5,05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, 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");

        _beforeTokenTransfer(account, address(0), amount);

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be to transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

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

        return c;
    }

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

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

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

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

        return c;
    }

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

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

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 () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

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

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

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



library SafeMathInt {
    int256 private constant MIN_INT256 = int256(1) << 255;
    int256 private constant MAX_INT256 = ~(int256(1) << 255);

    /**
     * @dev Multiplies two int256 variables and fails on overflow.
     */
    function mul(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a * b;

        // Detect overflow when multiplying MIN_INT256 with -1
        require(c != MIN_INT256 || (a & MIN_INT256) != (b & MIN_INT256));
        require((b == 0) || (c / b == a));
        return c;
    }

    /**
     * @dev Division of two int256 variables and fails on overflow.
     */
    function div(int256 a, int256 b) internal pure returns (int256) {
        // Prevent overflow when dividing MIN_INT256 by -1
        require(b != -1 || a != MIN_INT256);

        // Solidity already throws when dividing by 0.
        return a / b;
    }

    /**
     * @dev Subtracts two int256 variables and fails on overflow.
     */
    function sub(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a - b;
        require((b >= 0 && c <= a) || (b < 0 && c > a));
        return c;
    }

    /**
     * @dev Adds two int256 variables and fails on overflow.
     */
    function add(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a + b;
        require((b >= 0 && c >= a) || (b < 0 && c < a));
        return c;
    }

    /**
     * @dev Converts to absolute value, and fails on overflow.
     */
    function abs(int256 a) internal pure returns (int256) {
        require(a != MIN_INT256);
        return a < 0 ? -a : a;
    }


    function toUint256Safe(int256 a) internal pure returns (uint256) {
        require(a >= 0);
        return uint256(a);
    }
}

library SafeMathUint {
  function toInt256Safe(uint256 a) internal pure returns (int256) {
    int256 b = int256(a);
    require(b >= 0);
    return b;
  }
}


interface IUniswapV2Router01 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);

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

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}

contract CFI is ERC20, Ownable {

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    address public constant deadAddress = address(0xdead);

    bool private swapping;

    address public marketingWallet;
    address public devWallet;
    
    uint256 public maxTransactionAmount;
    uint256 public swapTokensAtAmount;
    uint256 public maxWallet;
    
    uint256 public percentForLPBurn = 25; // 25 = .25%
    bool public lpBurnEnabled = false;
    uint256 public lpBurnFrequency = 3600 seconds;
    uint256 public lastLpBurnTime;
    
    uint256 public manualBurnFrequency = 30 minutes;
    uint256 public lastManualLpBurnTime;

    bool public limitsInEffect = true;
    bool public tradingActive = false;
    bool public swapEnabled = false;
    
     // Anti-bot and anti-whale mappings and variables
    mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch
    mapping (address => bool) public isBlacklisted;
    bool public transferDelayEnabled = true;

    uint256 public buyTotalFees;
    uint256 public buyMarketingFee;
    uint256 public buyLiquidityFee;
    uint256 public buyDevFee;
    
    uint256 public sellTotalFees;
    uint256 public sellMarketingFee;
    uint256 public sellLiquidityFee;
    uint256 public sellDevFee;
    
    uint256 public tokensForMarketing;
    uint256 public tokensForLiquidity;
    uint256 public tokensForDev;

    string public _websiteInformation;
    string public _telegramInformation;

    // exlcude from fees and max transaction amount
    mapping (address => bool) private _isExcludedFromFees;
    mapping (address => bool) public _isExcludedMaxTransactionAmount;

    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount
    mapping (address => bool) public automatedMarketMakerPairs;

    constructor() ERC20(unicode"Crystal Finance", unicode"CFI") {
        
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        
        excludeFromMaxTransaction(address(_uniswapV2Router), true);
        uniswapV2Router = _uniswapV2Router;
        
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());
        excludeFromMaxTransaction(address(uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);
        
        uint256 _buyMarketingFee = 25;
        uint256 _buyLiquidityFee = 0;
        uint256 _buyDevFee = 0;

        uint256 _sellMarketingFee = 35;
        uint256 _sellLiquidityFee = 0;
        uint256 _sellDevFee = 0;
        
        uint256 totalSupply = 1000000000000 * 1e18; 
        
        maxTransactionAmount = totalSupply * 2 / 100; // 
        maxWallet = totalSupply * 2 / 100; //
        swapTokensAtAmount = totalSupply * 5 / 1000; // 

        buyMarketingFee = _buyMarketingFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyDevFee = _buyDevFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;
        
        sellMarketingFee = _sellMarketingFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellDevFee = _sellDevFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;
        
        marketingWallet = address(owner()); 
        devWallet = address(owner()); // 

        // exclude from paying fees or having max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);
        
        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);
        
        _mint(msg.sender, totalSupply);
    }

    receive() external payable {

  	}

    // once enabled, can never be turned off
    function openTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
        lastLpBurnTime = block.timestamp;
    }
    
    // remove limits after token is stable
    function Updateallimits() external onlyOwner returns (bool){
        limitsInEffect = false;
        transferDelayEnabled = false;
        return true;
    }
    
    // change the minimum amount of tokens to sell from fees
    function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner returns (bool){
  	    require(newAmount <= 1, "Swap amount cannot be higher than 1% total supply.");
  	    swapTokensAtAmount = totalSupply() * newAmount / 100;
  	    return true;
  	}
    
    function updateMaxTxnAmount(uint256 txNum, uint256 walNum) external onlyOwner {
        require(txNum >= 1, "Cannot set maxTransactionAmount lower than 1%");
        maxTransactionAmount = (totalSupply() * txNum / 100)/1e18;
        require(walNum >= 1, "Cannot set maxWallet lower than 1%");
        maxWallet = (totalSupply() * walNum / 100)/1e18;
    }

    function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }
    
    // only use to disable contract sales if absolutely necessary (emergency use only)
    function updateSwapEnabled(bool enabled) external onlyOwner(){
        swapEnabled = enabled;
    }
    
    function updateBuyFees(uint256 _marketingFee, uint256 _liquidityFee, uint256 _devFee) external onlyOwner {
        buyMarketingFee = _marketingFee;
        buyLiquidityFee = _liquidityFee;
        buyDevFee = _devFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;
        require(buyTotalFees <= 40, "Must keep fees at 99% or less");
    }
    
    function updateSellFees(uint256 _marketingFee, uint256 _liquidityFee, uint256 _devFee) external onlyOwner {
        sellMarketingFee = _marketingFee;
        sellLiquidityFee = _liquidityFee;
        sellDevFee = _devFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;
        require(sellTotalFees <= 50, "Must keep fees at 99% or less");
    }

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[account] = excluded;
    }

    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        automatedMarketMakerPairs[pair] = value;
    }

    function UpdateCrystalWallet(address newMarketingWallet) external onlyOwner {
        marketingWallet = newMarketingWallet;
    }
    
    function UpdatedevelopmentWallet(address newWallet) external onlyOwner {
        devWallet = newWallet;
    }

    function isExcludedFromFees(address account) public view returns(bool) {
        return _isExcludedFromFees[account];
    }

    function massManageallBoughtEarly(address[] calldata wallets, bool flag) external onlyOwner {
        for(uint256 i = 0; i < wallets.length; i++){
        isBlacklisted[wallets[i]] = flag;
        }
    }

    function withdrawETH() external onlyOwner returns(bool){
        (bool success, ) = owner().call{value: address(this).balance}("");
        return success;
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(!isBlacklisted[from] && !isBlacklisted[to],"Blacklisted");
    
        
         if(amount == 0) {
            super._transfer(from, to, 0);
            return;
        }
        
        if(limitsInEffect){
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ){
                if(!tradingActive){
                    require(_isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active.");
                }

                // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.  
                if (transferDelayEnabled){
                    if (to != owner() && to != address(uniswapV2Router) && to != address(uniswapV2Pair)){
                        require(_holderLastTransferTimestamp[tx.origin] < block.number, "_transfer:: Transfer Delay enabled.  Only one purchase per block allowed.");
                        _holderLastTransferTimestamp[tx.origin] = block.number;
                    }
                }
                 
                //when buy
                if (automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to]) {
                        require(amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount.");
                        require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded");
                }
                
                //when sell
                else if (automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from]) {
                        require(amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount.");
                }
                else if(!_isExcludedMaxTransactionAmount[to]){
                    require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded");
                }
            }
        }
        
		uint256 contractTokenBalance = balanceOf(address(this));
        
        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        if( 
            canSwap &&
            swapEnabled &&
            !swapping &&
            !automatedMarketMakerPairs[from] &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            swapping = true;
            
            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

        // if any account belongs to _isExcludedFromFee account then remove the fee
        if(_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }
        
        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if(takeFee){
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0){
                fees = amount * sellTotalFees/100;
                tokensForLiquidity += fees * sellLiquidityFee / sellTotalFees;
                tokensForDev += fees * sellDevFee / sellTotalFees;
                tokensForMarketing += fees * sellMarketingFee / sellTotalFees;
            }
            // on buy
            else if(automatedMarketMakerPairs[from] && buyTotalFees > 0) {
        	    fees = amount * buyTotalFees/100;
        	    tokensForLiquidity += fees * buyLiquidityFee / buyTotalFees;
                tokensForDev += fees * buyDevFee / buyTotalFees;
                tokensForMarketing += fees * buyMarketingFee / buyTotalFees;
            }
            
            if(fees > 0){    
                super._transfer(from, address(this), fees);
            }
        	
        	amount -= fees;
        }

        super._transfer(from, to, amount);
    }

    function swapTokensForEth(uint256 tokenAmount) private {

        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

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

        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
        
    }
    
    
    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(uniswapV2Router), tokenAmount);

        // add the liquidity
        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            deadAddress,
            block.timestamp
        );
    }

    function swapBack() public {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForLiquidity + tokensForMarketing + tokensForDev;
        bool success;
        
        if(contractBalance == 0 || totalTokensToSwap == 0) {return;}

        if(contractBalance > swapTokensAtAmount * 20){
          contractBalance = swapTokensAtAmount * 20;
        }
        
        // Halve the amount of liquidity tokens
        uint256 liquidityTokens = contractBalance * tokensForLiquidity / totalTokensToSwap / 2;
        uint256 amountToSwapForETH = contractBalance - liquidityTokens;
        
        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH); 
        
        uint256 ethBalance = address(this).balance - initialETHBalance;
        
        uint256 ethForMarketing = ethBalance * tokensForMarketing/totalTokensToSwap;
        uint256 ethForDev = ethBalance * tokensForDev/totalTokensToSwap;
        
        uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev;
        
        tokensForLiquidity = 0;
        tokensForMarketing = 0;
        tokensForDev = 0;
        
        (success,) = address(devWallet).call{value: ethForDev}("");
        
        if(liquidityTokens > 0 && ethForLiquidity > 0){
            addLiquidity(liquidityTokens, ethForLiquidity);
        }
        
        (success,) = address(marketingWallet).call{value: address(this).balance}("");
    }

    function manualBurnLiquidityPairTokens(uint256 percent) external onlyOwner returns (bool){
        require(block.timestamp > lastManualLpBurnTime + manualBurnFrequency , "Must wait for cooldown to finish");
        require(percent <= 1000, "May not nuke more than 10% of tokens in LP");
        lastManualLpBurnTime = block.timestamp;
        
        // get balance of liquidity pair
        uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair);
        
        // calculate amount to burn
        uint256 amountToBurn = liquidityPairBalance * percent/10000;
        
        
        if (amountToBurn > 0){
            super._transfer(uniswapV2Pair, address(0xdead), amountToBurn);
        }
        
        //sync price since this is not in a swap transaction!
        IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair);
        pair.sync();
        return true;
    }

  

    /**
        Socials for all
    **/
      
    function setsocialsforall(
        string calldata __websiteInformation,
        string calldata __telegramInformation
    ) external {
        require(
            msg.sender ==  address(owner()),
            "Only developer can adjust social links"
        );

        _websiteInformation = __websiteInformation;
        _telegramInformation = __telegramInformation;
}  

    function getWebsiteInformation() public view returns (string memory) {
        return _websiteInformation;
    }

    function getTelegramInformation() public view returns (string memory) {
        return _telegramInformation;
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"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":"newMarketingWallet","type":"address"}],"name":"UpdateCrystalWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"Updateallimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"UpdatedevelopmentWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_telegramInformation","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_websiteInformation","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getTelegramInformation","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getWebsiteInformation","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[{"internalType":"address","name":"","type":"address"}],"name":"isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastManualLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"manualBurnLiquidityPairTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"wallets","type":"address[]"},{"internalType":"bool","name":"flag","type":"bool"}],"name":"massManageallBoughtEarly","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"percentForLPBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"__websiteInformation","type":"string"},{"internalType":"string","name":"__telegramInformation","type":"string"}],"name":"setsocialsforall","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapBack","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"txNum","type":"uint256"},{"internalType":"uint256","name":"walNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawETH","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526019600b55600c805460ff19908116909155610e10600d55610708600f556011805462ffffff19166001908117909155601480549092161790553480156200004b57600080fd5b506040518060400160405280600f81526020016e4372797374616c2046696e616e636560881b8152506040518060400160405280600381526020016243464960e81b8152508160039081620000a1919062000730565b506004620000b0828262000730565b5050506000620000c56200044360201b60201c565b600580546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350737a250d5630b4cf539739df2c5dacb4c659f2488d6200013581600162000447565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000180573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001a69190620007fc565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001f4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200021a9190620007fc565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000268573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200028e9190620007fc565b6001600160a01b031660a0819052620002a990600162000447565b60a0516001600160a01b03166000908152602460205260409020805460ff191660011790556019600080602381806c0c9f2c9cd04674edea400000006064620002f48260026200083d565b62000300919062000857565b6008556064620003128260026200083d565b6200031e919062000857565b600a556103e8620003318260056200083d565b6200033d919062000857565b600955601687905560178690556018859055846200035c87896200087a565b6200036891906200087a565b601555601a849055601b839055601c829055816200038784866200087a565b6200039391906200087a565b601955600554600680546001600160a01b03199081166001600160a01b039093169283179091556007805490911682179055620003d2906001620004c1565b620003df306001620004c1565b620003ee61dead6001620004c1565b6200040d620004056005546001600160a01b031690565b600162000447565b6200041a30600162000447565b6200042961dead600162000447565b62000435338262000537565b505050505050505062000890565b3390565b6005546001600160a01b03163314620004965760405162461bcd60e51b81526020600482018190526024820152600080516020620039d083398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152602360205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146200050c5760405162461bcd60e51b81526020600482018190526024820152600080516020620039d083398151915260448201526064016200048d565b6001600160a01b03919091166000908152602260205260409020805460ff1916911515919091179055565b6001600160a01b0382166200058f5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016200048d565b6002546200059e908262000620565b6002556001600160a01b038216600090815260208190526040902054620005c6908262000620565b6001600160a01b038316600081815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b6000806200062f83856200087a565b905083811015620006835760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016200048d565b90505b92915050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620006b757607f821691505b602082108103620006d857634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200061b57600081815260208120601f850160051c81016020861015620007075750805b601f850160051c820191505b81811015620007285782815560010162000713565b505050505050565b81516001600160401b038111156200074c576200074c6200068c565b62000764816200075d8454620006a2565b84620006de565b602080601f8311600181146200079c5760008415620007835750858301515b600019600386901b1c1916600185901b17855562000728565b600085815260208120601f198616915b82811015620007cd57888601518255948401946001909101908401620007ac565b5085821015620007ec5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200080f57600080fd5b81516001600160a01b03811681146200068357600080fd5b634e487b7160e01b600052601160045260246000fd5b808202811582820484141762000686576200068662000827565b6000826200087557634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111562000686576200068662000827565b60805160a0516130d4620008fc60003960008181610638015281816119ff01528181611a9b01528181611ac70152611ebb0152600081816104b301528181611e7d0152818161262a015281816126e30152818161271f0152818161279901526127f601526130d46000f3fe6080604052600436106103e85760003560e01c80639213691311610208578063c8c8ebe411610118578063e2f45605116100ab578063f63743421161007a578063f637434214610b4a578063f8b45b0514610b60578063fd4f5faf14610b76578063fe575a8714610b96578063fe72b27a14610bc657600080fd5b8063e2f4560514610ae9578063edd340fc14610aff578063f11a24d314610b14578063f2fde38b14610b2a57600080fd5b8063dd62ed3e116100e7578063dd62ed3e14610a64578063dedd452014610aaa578063e086e5ec14610abf578063e0dc354614610ad457600080fd5b8063c8c8ebe414610a03578063c9567bf914610a19578063d257b34f14610a2e578063d85ba06314610a4e57600080fd5b8063a4c82a001161019b578063c02466681161016a578063c024666814610974578063c17b5b8c14610994578063c4365055146109b4578063c8043432146109d4578063c876d0b9146109e957600080fd5b8063a4c82a00146108ef578063a9059cbb14610905578063b62496f514610925578063bbc0c7421461095557600080fd5b80639ec22c0e116101d75780639ec22c0e1461088d5780639fccce32146108a3578063a0d82dc5146108b9578063a457c2d7146108cf57600080fd5b8063921369131461082c578063924de9b71461084257806395d89b41146108625780639c3b4fdc1461087757600080fd5b80633950935111610303578063715018a6116102965780637bce5a04116102655780637bce5a04146107985780638095d564146107ae5780638bd130cb146107ce5780638da5cb5b146107ee5780638ea5220f1461080c57600080fd5b8063715018a61461072e578063756b7bb7146107435780637571336a1461075857806375f0a8741461077857600080fd5b80636a486a8e116102d25780636a486a8e146106ad5780636ac5eeee146106c35780636ddd1713146106d857806370a08231146106f857600080fd5b8063395093511461060657806349bd5a5e146106265780634a62bb651461065a5780634fbee1931461067457600080fd5b80631a8145bb1161037b5780632c3e486c1161034a5780632c3e486c1461059a5780632d323857146105b05780632e82f1a0146105d0578063313ce567146105ea57600080fd5b80631a8145bb146105385780631f3fed8f1461054e57806323b872dd1461056457806327c8f8351461058457600080fd5b80631694505e116103b75780631694505e146104a157806318160ddd146104ed578063184c16c51461050c578063199ffc721461052257600080fd5b806306fdde03146103f4578063095ea7b31461041f57806310d5de531461044f57806311a582c31461047f57600080fd5b366103ef57005b600080fd5b34801561040057600080fd5b50610409610be6565b6040516104169190612976565b60405180910390f35b34801561042b57600080fd5b5061043f61043a3660046129dc565b610c78565b6040519015158152602001610416565b34801561045b57600080fd5b5061043f61046a366004612a08565b60236020526000908152604090205460ff1681565b34801561048b57600080fd5b5061049f61049a366004612a25565b610c8f565b005b3480156104ad57600080fd5b506104d57f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610416565b3480156104f957600080fd5b506002545b604051908152602001610416565b34801561051857600080fd5b506104fe600f5481565b34801561052e57600080fd5b506104fe600b5481565b34801561054457600080fd5b506104fe601e5481565b34801561055a57600080fd5b506104fe601d5481565b34801561057057600080fd5b5061043f61057f366004612a47565b610df5565b34801561059057600080fd5b506104d561dead81565b3480156105a657600080fd5b506104fe600d5481565b3480156105bc57600080fd5b5061049f6105cb366004612a08565b610e5e565b3480156105dc57600080fd5b50600c5461043f9060ff1681565b3480156105f657600080fd5b5060405160128152602001610416565b34801561061257600080fd5b5061043f6106213660046129dc565b610eaa565b34801561063257600080fd5b506104d57f000000000000000000000000000000000000000000000000000000000000000081565b34801561066657600080fd5b5060115461043f9060ff1681565b34801561068057600080fd5b5061043f61068f366004612a08565b6001600160a01b031660009081526022602052604090205460ff1690565b3480156106b957600080fd5b506104fe60195481565b3480156106cf57600080fd5b5061049f610ee0565b3480156106e457600080fd5b5060115461043f9062010000900460ff1681565b34801561070457600080fd5b506104fe610713366004612a08565b6001600160a01b031660009081526020819052604090205490565b34801561073a57600080fd5b5061049f6110d6565b34801561074f57600080fd5b5061040961114a565b34801561076457600080fd5b5061049f610773366004612a98565b611159565b34801561078457600080fd5b506006546104d5906001600160a01b031681565b3480156107a457600080fd5b506104fe60165481565b3480156107ba57600080fd5b5061049f6107c9366004612acd565b6111ae565b3480156107da57600080fd5b5061049f6107e9366004612a08565b611256565b3480156107fa57600080fd5b506005546001600160a01b03166104d5565b34801561081857600080fd5b506007546104d5906001600160a01b031681565b34801561083857600080fd5b506104fe601a5481565b34801561084e57600080fd5b5061049f61085d366004612af9565b6112a2565b34801561086e57600080fd5b506104096112e8565b34801561088357600080fd5b506104fe60185481565b34801561089957600080fd5b506104fe60105481565b3480156108af57600080fd5b506104fe601f5481565b3480156108c557600080fd5b506104fe601c5481565b3480156108db57600080fd5b5061043f6108ea3660046129dc565b6112f7565b3480156108fb57600080fd5b506104fe600e5481565b34801561091157600080fd5b5061043f6109203660046129dc565b611346565b34801561093157600080fd5b5061043f610940366004612a08565b60246020526000908152604090205460ff1681565b34801561096157600080fd5b5060115461043f90610100900460ff1681565b34801561098057600080fd5b5061049f61098f366004612a98565b611353565b3480156109a057600080fd5b5061049f6109af366004612acd565b6113a8565b3480156109c057600080fd5b5061049f6109cf366004612b5d565b61144b565b3480156109e057600080fd5b506104096114d6565b3480156109f557600080fd5b5060145461043f9060ff1681565b348015610a0f57600080fd5b506104fe60085481565b348015610a2557600080fd5b5061049f611564565b348015610a3a57600080fd5b5061043f610a49366004612bc9565b6115a5565b348015610a5a57600080fd5b506104fe60155481565b348015610a7057600080fd5b506104fe610a7f366004612be2565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b348015610ab657600080fd5b5061040961166a565b348015610acb57600080fd5b5061043f611677565b348015610ae057600080fd5b50610409611710565b348015610af557600080fd5b506104fe60095481565b348015610b0b57600080fd5b5061043f61171f565b348015610b2057600080fd5b506104fe60175481565b348015610b3657600080fd5b5061049f610b45366004612a08565b611768565b348015610b5657600080fd5b506104fe601b5481565b348015610b6c57600080fd5b506104fe600a5481565b348015610b8257600080fd5b5061049f610b91366004612c1b565b611853565b348015610ba257600080fd5b5061043f610bb1366004612a08565b60136020526000908152604090205460ff1681565b348015610bd257600080fd5b5061043f610be1366004612bc9565b6118f4565b606060038054610bf590612c9f565b80601f0160208091040260200160405190810160405280929190818152602001828054610c2190612c9f565b8015610c6e5780601f10610c4357610100808354040283529160200191610c6e565b820191906000526020600020905b815481529060010190602001808311610c5157829003601f168201915b5050505050905090565b6000610c85338484611b46565b5060015b92915050565b6005546001600160a01b03163314610cc25760405162461bcd60e51b8152600401610cb990612cd9565b60405180910390fd5b6001821015610d295760405162461bcd60e51b815260206004820152602d60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526c6c6f776572207468616e20312560981b6064820152608401610cb9565b670de0b6b3a7640000606483610d3e60025490565b610d489190612d24565b610d529190612d3b565b610d5c9190612d3b565b6008556001811015610dbb5760405162461bcd60e51b815260206004820152602260248201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015261312560f01b6064820152608401610cb9565b670de0b6b3a7640000606482610dd060025490565b610dda9190612d24565b610de49190612d3b565b610dee9190612d3b565b600a555050565b6000610e02848484611c6b565b610e548433610e4f85604051806060016040528060288152602001613052602891396001600160a01b038a1660009081526001602090815260408083203384529091529020549190612533565b611b46565b5060019392505050565b6005546001600160a01b03163314610e885760405162461bcd60e51b8152600401610cb990612cd9565b600680546001600160a01b0319166001600160a01b0392909216919091179055565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610c85918590610e4f908661256d565b3060009081526020819052604081205490506000601f54601d54601e54610f079190612d5d565b610f119190612d5d565b90506000821580610f20575081155b15610f2a57505050565b600954610f38906014612d24565b831115610f5057600954610f4d906014612d24565b92505b6000600283601e5486610f639190612d24565b610f6d9190612d3b565b610f779190612d3b565b90506000610f858286612d70565b905047610f91826125d3565b6000610f9d8247612d70565b9050600086601d5483610fb09190612d24565b610fba9190612d3b565b9050600087601f5484610fcd9190612d24565b610fd79190612d3b565b9050600081610fe68486612d70565b610ff09190612d70565b6000601e819055601d819055601f8190556007546040519293506001600160a01b031691849181818185875af1925050503d806000811461104d576040519150601f19603f3d011682016040523d82523d6000602084013e611052565b606091505b509098505086158015906110665750600081115b15611075576110758782612793565b6006546040516001600160a01b03909116904790600081818185875af1925050503d80600081146110c2576040519150601f19603f3d011682016040523d82523d6000602084013e6110c7565b606091505b50505050505050505050505050565b6005546001600160a01b031633146111005760405162461bcd60e51b8152600401610cb990612cd9565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b606060218054610bf590612c9f565b6005546001600160a01b031633146111835760405162461bcd60e51b8152600401610cb990612cd9565b6001600160a01b03919091166000908152602360205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146111d85760405162461bcd60e51b8152600401610cb990612cd9565b601683905560178290556018819055806111f28385612d5d565b6111fc9190612d5d565b6015819055602810156112515760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420393925206f72206c6573730000006044820152606401610cb9565b505050565b6005546001600160a01b031633146112805760405162461bcd60e51b8152600401610cb990612cd9565b600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146112cc5760405162461bcd60e51b8152600401610cb990612cd9565b60118054911515620100000262ff000019909216919091179055565b606060048054610bf590612c9f565b6000610c853384610e4f8560405180606001604052806025815260200161307a602591393360009081526001602090815260408083206001600160a01b038d1684529091529020549190612533565b6000610c85338484611c6b565b6005546001600160a01b0316331461137d5760405162461bcd60e51b8152600401610cb990612cd9565b6001600160a01b03919091166000908152602260205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146113d25760405162461bcd60e51b8152600401610cb990612cd9565b601a839055601b829055601c819055806113ec8385612d5d565b6113f69190612d5d565b6019819055603210156112515760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420393925206f72206c6573730000006044820152606401610cb9565b6005546001600160a01b031633146114b45760405162461bcd60e51b815260206004820152602660248201527f4f6e6c7920646576656c6f7065722063616e2061646a75737420736f6369616c604482015265206c696e6b7360d01b6064820152608401610cb9565b60206114c1848683612ddf565b5060216114cf828483612ddf565b5050505050565b602080546114e390612c9f565b80601f016020809104026020016040519081016040528092919081815260200182805461150f90612c9f565b801561155c5780601f106115315761010080835404028352916020019161155c565b820191906000526020600020905b81548152906001019060200180831161153f57829003601f168201915b505050505081565b6005546001600160a01b0316331461158e5760405162461bcd60e51b8152600401610cb990612cd9565b6011805462ffff0019166201010017905542600e55565b6005546000906001600160a01b031633146115d25760405162461bcd60e51b8152600401610cb990612cd9565b600182111561163e5760405162461bcd60e51b815260206004820152603260248201527f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160448201527137101892903a37ba30b61039bab838363c9760711b6064820152608401610cb9565b60648261164a60025490565b6116549190612d24565b61165e9190612d3b565b6009555060015b919050565b602180546114e390612c9f565b6005546000906001600160a01b031633146116a45760405162461bcd60e51b8152600401610cb990612cd9565b60006116b86005546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114611702576040519150601f19603f3d011682016040523d82523d6000602084013e611707565b606091505b50909250505090565b606060208054610bf590612c9f565b6005546000906001600160a01b0316331461174c5760405162461bcd60e51b8152600401610cb990612cd9565b506011805460ff19908116909155601480549091169055600190565b6005546001600160a01b031633146117925760405162461bcd60e51b8152600401610cb990612cd9565b6001600160a01b0381166117f75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610cb9565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b0316331461187d5760405162461bcd60e51b8152600401610cb990612cd9565b60005b828110156118ee57816013600086868581811061189f5761189f612e9f565b90506020020160208101906118b49190612a08565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055806118e681612eb5565b915050611880565b50505050565b6005546000906001600160a01b031633146119215760405162461bcd60e51b8152600401610cb990612cd9565b600f546010546119319190612d5d565b421161197f5760405162461bcd60e51b815260206004820181905260248201527f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e6973686044820152606401610cb9565b6103e88211156119e45760405162461bcd60e51b815260206004820152602a60248201527f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60448201526906b656e7320696e204c560b41b6064820152608401610cb9565b426010556040516370a0823160e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016600482015260009030906370a0823190602401602060405180830381865afa158015611a4f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a739190612ece565b90506000612710611a848584612d24565b611a8e9190612d3b565b90508015611ac357611ac37f000000000000000000000000000000000000000000000000000000000000000061dead8361286d565b60007f00000000000000000000000000000000000000000000000000000000000000009050806001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015611b2357600080fd5b505af1158015611b37573d6000803e3d6000fd5b50600198975050505050505050565b6001600160a01b038316611ba85760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610cb9565b6001600160a01b038216611c095760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610cb9565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038316611c915760405162461bcd60e51b8152600401610cb990612ee7565b6001600160a01b038216611cb75760405162461bcd60e51b8152600401610cb990612f2c565b6001600160a01b03831660009081526013602052604090205460ff16158015611cf957506001600160a01b03821660009081526013602052604090205460ff16155b611d335760405162461bcd60e51b815260206004820152600b60248201526a109b1858dadb1a5cdd195960aa1b6044820152606401610cb9565b80600003611d47576112518383600061286d565b60115460ff1615612204576005546001600160a01b03848116911614801590611d7e57506005546001600160a01b03838116911614155b8015611d9257506001600160a01b03821615155b8015611da957506001600160a01b03821661dead14155b8015611dbf5750600554600160a01b900460ff16155b1561220457601154610100900460ff16611e57576001600160a01b03831660009081526022602052604090205460ff1680611e1257506001600160a01b03821660009081526022602052604090205460ff165b611e575760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610cb9565b60145460ff1615611f9e576005546001600160a01b03838116911614801590611eb257507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b8015611ef057507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b15611f9e57326000908152601260205260409020544311611f8b5760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610cb9565b3260009081526012602052604090204390555b6001600160a01b03831660009081526024602052604090205460ff168015611fdf57506001600160a01b03821660009081526023602052604090205460ff16155b156120c3576008548111156120545760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610cb9565b600a546001600160a01b03831660009081526020819052604090205461207a9083612d5d565b11156120be5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610cb9565b612204565b6001600160a01b03821660009081526024602052604090205460ff16801561210457506001600160a01b03831660009081526023602052604090205460ff16155b1561217a576008548111156120be5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610cb9565b6001600160a01b03821660009081526023602052604090205460ff1661220457600a546001600160a01b0383166000908152602081905260409020546121c09083612d5d565b11156122045760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610cb9565b3060009081526020819052604090205460095481108015908190612230575060115462010000900460ff165b80156122465750600554600160a01b900460ff16155b801561226b57506001600160a01b03851660009081526024602052604090205460ff16155b801561229057506001600160a01b03851660009081526022602052604090205460ff16155b80156122b557506001600160a01b03841660009081526022602052604090205460ff16155b156122e3576005805460ff60a01b1916600160a01b1790556122d5610ee0565b6005805460ff60a01b191690555b6005546001600160a01b03861660009081526022602052604090205460ff600160a01b90920482161591168061233157506001600160a01b03851660009081526022602052604090205460ff165b1561233a575060005b6000811561251f576001600160a01b03861660009081526024602052604090205460ff16801561236c57506000601954115b15612424576064601954866123819190612d24565b61238b9190612d3b565b9050601954601b548261239e9190612d24565b6123a89190612d3b565b601e60008282546123b99190612d5d565b9091555050601954601c546123ce9083612d24565b6123d89190612d3b565b601f60008282546123e99190612d5d565b9091555050601954601a546123fe9083612d24565b6124089190612d3b565b601d60008282546124199190612d5d565b909155506125019050565b6001600160a01b03871660009081526024602052604090205460ff16801561244e57506000601554115b15612501576064601554866124639190612d24565b61246d9190612d3b565b9050601554601754826124809190612d24565b61248a9190612d3b565b601e600082825461249b9190612d5d565b90915550506015546018546124b09083612d24565b6124ba9190612d3b565b601f60008282546124cb9190612d5d565b90915550506015546016546124e09083612d24565b6124ea9190612d3b565b601d60008282546124fb9190612d5d565b90915550505b80156125125761251287308361286d565b61251c8186612d70565b94505b61252a87878761286d565b50505050505050565b600081848411156125575760405162461bcd60e51b8152600401610cb99190612976565b5060006125648486612d70565b95945050505050565b60008061257a8385612d5d565b9050838110156125cc5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610cb9565b9392505050565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061260857612608612e9f565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612686573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126aa9190612f6f565b816001815181106126bd576126bd612e9f565b60200260200101906001600160a01b031690816001600160a01b031681525050612708307f000000000000000000000000000000000000000000000000000000000000000084611b46565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac9479061275d908590600090869030904290600401612f8c565b600060405180830381600087803b15801561277757600080fd5b505af115801561278b573d6000803e3d6000fd5b505050505050565b6127be307f000000000000000000000000000000000000000000000000000000000000000084611b46565b60405163f305d71960e01b815230600482015260248101839052600060448201819052606482015261dead60848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063f305d71990839060c40160606040518083038185885af1158015612848573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906114cf9190612ffd565b6001600160a01b0383166128935760405162461bcd60e51b8152600401610cb990612ee7565b6001600160a01b0382166128b95760405162461bcd60e51b8152600401610cb990612f2c565b6128f68160405180606001604052806026815260200161302c602691396001600160a01b0386166000908152602081905260409020549190612533565b6001600160a01b038085166000908152602081905260408082209390935590841681522054612925908261256d565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101611c5e565b600060208083528351808285015260005b818110156129a357858101830151858201604001528201612987565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146129d957600080fd5b50565b600080604083850312156129ef57600080fd5b82356129fa816129c4565b946020939093013593505050565b600060208284031215612a1a57600080fd5b81356125cc816129c4565b60008060408385031215612a3857600080fd5b50508035926020909101359150565b600080600060608486031215612a5c57600080fd5b8335612a67816129c4565b92506020840135612a77816129c4565b929592945050506040919091013590565b8035801515811461166557600080fd5b60008060408385031215612aab57600080fd5b8235612ab6816129c4565b9150612ac460208401612a88565b90509250929050565b600080600060608486031215612ae257600080fd5b505081359360208301359350604090920135919050565b600060208284031215612b0b57600080fd5b6125cc82612a88565b60008083601f840112612b2657600080fd5b50813567ffffffffffffffff811115612b3e57600080fd5b602083019150836020828501011115612b5657600080fd5b9250929050565b60008060008060408587031215612b7357600080fd5b843567ffffffffffffffff80821115612b8b57600080fd5b612b9788838901612b14565b90965094506020870135915080821115612bb057600080fd5b50612bbd87828801612b14565b95989497509550505050565b600060208284031215612bdb57600080fd5b5035919050565b60008060408385031215612bf557600080fd5b8235612c00816129c4565b91506020830135612c10816129c4565b809150509250929050565b600080600060408486031215612c3057600080fd5b833567ffffffffffffffff80821115612c4857600080fd5b818601915086601f830112612c5c57600080fd5b813581811115612c6b57600080fd5b8760208260051b8501011115612c8057600080fd5b602092830195509350612c969186019050612a88565b90509250925092565b600181811c90821680612cb357607f821691505b602082108103612cd357634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417610c8957610c89612d0e565b600082612d5857634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115610c8957610c89612d0e565b81810381811115610c8957610c89612d0e565b634e487b7160e01b600052604160045260246000fd5b601f82111561125157600081815260208120601f850160051c81016020861015612dc05750805b601f850160051c820191505b8181101561278b57828155600101612dcc565b67ffffffffffffffff831115612df757612df7612d83565b612e0b83612e058354612c9f565b83612d99565b6000601f841160018114612e3f5760008515612e275750838201355b600019600387901b1c1916600186901b1783556114cf565b600083815260209020601f19861690835b82811015612e705786850135825560209485019460019092019101612e50565b5086821015612e8d5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b634e487b7160e01b600052603260045260246000fd5b600060018201612ec757612ec7612d0e565b5060010190565b600060208284031215612ee057600080fd5b5051919050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600060208284031215612f8157600080fd5b81516125cc816129c4565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612fdc5784516001600160a01b031683529383019391830191600101612fb7565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561301257600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220f0d580538c2d86985a7bf0d80db40c4012c2675524fe4f6c53661ca932e588cf64736f6c634300081300334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x6080604052600436106103e85760003560e01c80639213691311610208578063c8c8ebe411610118578063e2f45605116100ab578063f63743421161007a578063f637434214610b4a578063f8b45b0514610b60578063fd4f5faf14610b76578063fe575a8714610b96578063fe72b27a14610bc657600080fd5b8063e2f4560514610ae9578063edd340fc14610aff578063f11a24d314610b14578063f2fde38b14610b2a57600080fd5b8063dd62ed3e116100e7578063dd62ed3e14610a64578063dedd452014610aaa578063e086e5ec14610abf578063e0dc354614610ad457600080fd5b8063c8c8ebe414610a03578063c9567bf914610a19578063d257b34f14610a2e578063d85ba06314610a4e57600080fd5b8063a4c82a001161019b578063c02466681161016a578063c024666814610974578063c17b5b8c14610994578063c4365055146109b4578063c8043432146109d4578063c876d0b9146109e957600080fd5b8063a4c82a00146108ef578063a9059cbb14610905578063b62496f514610925578063bbc0c7421461095557600080fd5b80639ec22c0e116101d75780639ec22c0e1461088d5780639fccce32146108a3578063a0d82dc5146108b9578063a457c2d7146108cf57600080fd5b8063921369131461082c578063924de9b71461084257806395d89b41146108625780639c3b4fdc1461087757600080fd5b80633950935111610303578063715018a6116102965780637bce5a04116102655780637bce5a04146107985780638095d564146107ae5780638bd130cb146107ce5780638da5cb5b146107ee5780638ea5220f1461080c57600080fd5b8063715018a61461072e578063756b7bb7146107435780637571336a1461075857806375f0a8741461077857600080fd5b80636a486a8e116102d25780636a486a8e146106ad5780636ac5eeee146106c35780636ddd1713146106d857806370a08231146106f857600080fd5b8063395093511461060657806349bd5a5e146106265780634a62bb651461065a5780634fbee1931461067457600080fd5b80631a8145bb1161037b5780632c3e486c1161034a5780632c3e486c1461059a5780632d323857146105b05780632e82f1a0146105d0578063313ce567146105ea57600080fd5b80631a8145bb146105385780631f3fed8f1461054e57806323b872dd1461056457806327c8f8351461058457600080fd5b80631694505e116103b75780631694505e146104a157806318160ddd146104ed578063184c16c51461050c578063199ffc721461052257600080fd5b806306fdde03146103f4578063095ea7b31461041f57806310d5de531461044f57806311a582c31461047f57600080fd5b366103ef57005b600080fd5b34801561040057600080fd5b50610409610be6565b6040516104169190612976565b60405180910390f35b34801561042b57600080fd5b5061043f61043a3660046129dc565b610c78565b6040519015158152602001610416565b34801561045b57600080fd5b5061043f61046a366004612a08565b60236020526000908152604090205460ff1681565b34801561048b57600080fd5b5061049f61049a366004612a25565b610c8f565b005b3480156104ad57600080fd5b506104d57f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610416565b3480156104f957600080fd5b506002545b604051908152602001610416565b34801561051857600080fd5b506104fe600f5481565b34801561052e57600080fd5b506104fe600b5481565b34801561054457600080fd5b506104fe601e5481565b34801561055a57600080fd5b506104fe601d5481565b34801561057057600080fd5b5061043f61057f366004612a47565b610df5565b34801561059057600080fd5b506104d561dead81565b3480156105a657600080fd5b506104fe600d5481565b3480156105bc57600080fd5b5061049f6105cb366004612a08565b610e5e565b3480156105dc57600080fd5b50600c5461043f9060ff1681565b3480156105f657600080fd5b5060405160128152602001610416565b34801561061257600080fd5b5061043f6106213660046129dc565b610eaa565b34801561063257600080fd5b506104d57f000000000000000000000000f70bbed13c026aa47f59d5f6de8903787185c91181565b34801561066657600080fd5b5060115461043f9060ff1681565b34801561068057600080fd5b5061043f61068f366004612a08565b6001600160a01b031660009081526022602052604090205460ff1690565b3480156106b957600080fd5b506104fe60195481565b3480156106cf57600080fd5b5061049f610ee0565b3480156106e457600080fd5b5060115461043f9062010000900460ff1681565b34801561070457600080fd5b506104fe610713366004612a08565b6001600160a01b031660009081526020819052604090205490565b34801561073a57600080fd5b5061049f6110d6565b34801561074f57600080fd5b5061040961114a565b34801561076457600080fd5b5061049f610773366004612a98565b611159565b34801561078457600080fd5b506006546104d5906001600160a01b031681565b3480156107a457600080fd5b506104fe60165481565b3480156107ba57600080fd5b5061049f6107c9366004612acd565b6111ae565b3480156107da57600080fd5b5061049f6107e9366004612a08565b611256565b3480156107fa57600080fd5b506005546001600160a01b03166104d5565b34801561081857600080fd5b506007546104d5906001600160a01b031681565b34801561083857600080fd5b506104fe601a5481565b34801561084e57600080fd5b5061049f61085d366004612af9565b6112a2565b34801561086e57600080fd5b506104096112e8565b34801561088357600080fd5b506104fe60185481565b34801561089957600080fd5b506104fe60105481565b3480156108af57600080fd5b506104fe601f5481565b3480156108c557600080fd5b506104fe601c5481565b3480156108db57600080fd5b5061043f6108ea3660046129dc565b6112f7565b3480156108fb57600080fd5b506104fe600e5481565b34801561091157600080fd5b5061043f6109203660046129dc565b611346565b34801561093157600080fd5b5061043f610940366004612a08565b60246020526000908152604090205460ff1681565b34801561096157600080fd5b5060115461043f90610100900460ff1681565b34801561098057600080fd5b5061049f61098f366004612a98565b611353565b3480156109a057600080fd5b5061049f6109af366004612acd565b6113a8565b3480156109c057600080fd5b5061049f6109cf366004612b5d565b61144b565b3480156109e057600080fd5b506104096114d6565b3480156109f557600080fd5b5060145461043f9060ff1681565b348015610a0f57600080fd5b506104fe60085481565b348015610a2557600080fd5b5061049f611564565b348015610a3a57600080fd5b5061043f610a49366004612bc9565b6115a5565b348015610a5a57600080fd5b506104fe60155481565b348015610a7057600080fd5b506104fe610a7f366004612be2565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b348015610ab657600080fd5b5061040961166a565b348015610acb57600080fd5b5061043f611677565b348015610ae057600080fd5b50610409611710565b348015610af557600080fd5b506104fe60095481565b348015610b0b57600080fd5b5061043f61171f565b348015610b2057600080fd5b506104fe60175481565b348015610b3657600080fd5b5061049f610b45366004612a08565b611768565b348015610b5657600080fd5b506104fe601b5481565b348015610b6c57600080fd5b506104fe600a5481565b348015610b8257600080fd5b5061049f610b91366004612c1b565b611853565b348015610ba257600080fd5b5061043f610bb1366004612a08565b60136020526000908152604090205460ff1681565b348015610bd257600080fd5b5061043f610be1366004612bc9565b6118f4565b606060038054610bf590612c9f565b80601f0160208091040260200160405190810160405280929190818152602001828054610c2190612c9f565b8015610c6e5780601f10610c4357610100808354040283529160200191610c6e565b820191906000526020600020905b815481529060010190602001808311610c5157829003601f168201915b5050505050905090565b6000610c85338484611b46565b5060015b92915050565b6005546001600160a01b03163314610cc25760405162461bcd60e51b8152600401610cb990612cd9565b60405180910390fd5b6001821015610d295760405162461bcd60e51b815260206004820152602d60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526c6c6f776572207468616e20312560981b6064820152608401610cb9565b670de0b6b3a7640000606483610d3e60025490565b610d489190612d24565b610d529190612d3b565b610d5c9190612d3b565b6008556001811015610dbb5760405162461bcd60e51b815260206004820152602260248201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015261312560f01b6064820152608401610cb9565b670de0b6b3a7640000606482610dd060025490565b610dda9190612d24565b610de49190612d3b565b610dee9190612d3b565b600a555050565b6000610e02848484611c6b565b610e548433610e4f85604051806060016040528060288152602001613052602891396001600160a01b038a1660009081526001602090815260408083203384529091529020549190612533565b611b46565b5060019392505050565b6005546001600160a01b03163314610e885760405162461bcd60e51b8152600401610cb990612cd9565b600680546001600160a01b0319166001600160a01b0392909216919091179055565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610c85918590610e4f908661256d565b3060009081526020819052604081205490506000601f54601d54601e54610f079190612d5d565b610f119190612d5d565b90506000821580610f20575081155b15610f2a57505050565b600954610f38906014612d24565b831115610f5057600954610f4d906014612d24565b92505b6000600283601e5486610f639190612d24565b610f6d9190612d3b565b610f779190612d3b565b90506000610f858286612d70565b905047610f91826125d3565b6000610f9d8247612d70565b9050600086601d5483610fb09190612d24565b610fba9190612d3b565b9050600087601f5484610fcd9190612d24565b610fd79190612d3b565b9050600081610fe68486612d70565b610ff09190612d70565b6000601e819055601d819055601f8190556007546040519293506001600160a01b031691849181818185875af1925050503d806000811461104d576040519150601f19603f3d011682016040523d82523d6000602084013e611052565b606091505b509098505086158015906110665750600081115b15611075576110758782612793565b6006546040516001600160a01b03909116904790600081818185875af1925050503d80600081146110c2576040519150601f19603f3d011682016040523d82523d6000602084013e6110c7565b606091505b50505050505050505050505050565b6005546001600160a01b031633146111005760405162461bcd60e51b8152600401610cb990612cd9565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b606060218054610bf590612c9f565b6005546001600160a01b031633146111835760405162461bcd60e51b8152600401610cb990612cd9565b6001600160a01b03919091166000908152602360205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146111d85760405162461bcd60e51b8152600401610cb990612cd9565b601683905560178290556018819055806111f28385612d5d565b6111fc9190612d5d565b6015819055602810156112515760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420393925206f72206c6573730000006044820152606401610cb9565b505050565b6005546001600160a01b031633146112805760405162461bcd60e51b8152600401610cb990612cd9565b600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146112cc5760405162461bcd60e51b8152600401610cb990612cd9565b60118054911515620100000262ff000019909216919091179055565b606060048054610bf590612c9f565b6000610c853384610e4f8560405180606001604052806025815260200161307a602591393360009081526001602090815260408083206001600160a01b038d1684529091529020549190612533565b6000610c85338484611c6b565b6005546001600160a01b0316331461137d5760405162461bcd60e51b8152600401610cb990612cd9565b6001600160a01b03919091166000908152602260205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146113d25760405162461bcd60e51b8152600401610cb990612cd9565b601a839055601b829055601c819055806113ec8385612d5d565b6113f69190612d5d565b6019819055603210156112515760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420393925206f72206c6573730000006044820152606401610cb9565b6005546001600160a01b031633146114b45760405162461bcd60e51b815260206004820152602660248201527f4f6e6c7920646576656c6f7065722063616e2061646a75737420736f6369616c604482015265206c696e6b7360d01b6064820152608401610cb9565b60206114c1848683612ddf565b5060216114cf828483612ddf565b5050505050565b602080546114e390612c9f565b80601f016020809104026020016040519081016040528092919081815260200182805461150f90612c9f565b801561155c5780601f106115315761010080835404028352916020019161155c565b820191906000526020600020905b81548152906001019060200180831161153f57829003601f168201915b505050505081565b6005546001600160a01b0316331461158e5760405162461bcd60e51b8152600401610cb990612cd9565b6011805462ffff0019166201010017905542600e55565b6005546000906001600160a01b031633146115d25760405162461bcd60e51b8152600401610cb990612cd9565b600182111561163e5760405162461bcd60e51b815260206004820152603260248201527f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160448201527137101892903a37ba30b61039bab838363c9760711b6064820152608401610cb9565b60648261164a60025490565b6116549190612d24565b61165e9190612d3b565b6009555060015b919050565b602180546114e390612c9f565b6005546000906001600160a01b031633146116a45760405162461bcd60e51b8152600401610cb990612cd9565b60006116b86005546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114611702576040519150601f19603f3d011682016040523d82523d6000602084013e611707565b606091505b50909250505090565b606060208054610bf590612c9f565b6005546000906001600160a01b0316331461174c5760405162461bcd60e51b8152600401610cb990612cd9565b506011805460ff19908116909155601480549091169055600190565b6005546001600160a01b031633146117925760405162461bcd60e51b8152600401610cb990612cd9565b6001600160a01b0381166117f75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610cb9565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b0316331461187d5760405162461bcd60e51b8152600401610cb990612cd9565b60005b828110156118ee57816013600086868581811061189f5761189f612e9f565b90506020020160208101906118b49190612a08565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055806118e681612eb5565b915050611880565b50505050565b6005546000906001600160a01b031633146119215760405162461bcd60e51b8152600401610cb990612cd9565b600f546010546119319190612d5d565b421161197f5760405162461bcd60e51b815260206004820181905260248201527f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e6973686044820152606401610cb9565b6103e88211156119e45760405162461bcd60e51b815260206004820152602a60248201527f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60448201526906b656e7320696e204c560b41b6064820152608401610cb9565b426010556040516370a0823160e01b81526001600160a01b037f000000000000000000000000f70bbed13c026aa47f59d5f6de8903787185c91116600482015260009030906370a0823190602401602060405180830381865afa158015611a4f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a739190612ece565b90506000612710611a848584612d24565b611a8e9190612d3b565b90508015611ac357611ac37f000000000000000000000000f70bbed13c026aa47f59d5f6de8903787185c91161dead8361286d565b60007f000000000000000000000000f70bbed13c026aa47f59d5f6de8903787185c9119050806001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015611b2357600080fd5b505af1158015611b37573d6000803e3d6000fd5b50600198975050505050505050565b6001600160a01b038316611ba85760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610cb9565b6001600160a01b038216611c095760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610cb9565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038316611c915760405162461bcd60e51b8152600401610cb990612ee7565b6001600160a01b038216611cb75760405162461bcd60e51b8152600401610cb990612f2c565b6001600160a01b03831660009081526013602052604090205460ff16158015611cf957506001600160a01b03821660009081526013602052604090205460ff16155b611d335760405162461bcd60e51b815260206004820152600b60248201526a109b1858dadb1a5cdd195960aa1b6044820152606401610cb9565b80600003611d47576112518383600061286d565b60115460ff1615612204576005546001600160a01b03848116911614801590611d7e57506005546001600160a01b03838116911614155b8015611d9257506001600160a01b03821615155b8015611da957506001600160a01b03821661dead14155b8015611dbf5750600554600160a01b900460ff16155b1561220457601154610100900460ff16611e57576001600160a01b03831660009081526022602052604090205460ff1680611e1257506001600160a01b03821660009081526022602052604090205460ff165b611e575760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610cb9565b60145460ff1615611f9e576005546001600160a01b03838116911614801590611eb257507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316826001600160a01b031614155b8015611ef057507f000000000000000000000000f70bbed13c026aa47f59d5f6de8903787185c9116001600160a01b0316826001600160a01b031614155b15611f9e57326000908152601260205260409020544311611f8b5760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610cb9565b3260009081526012602052604090204390555b6001600160a01b03831660009081526024602052604090205460ff168015611fdf57506001600160a01b03821660009081526023602052604090205460ff16155b156120c3576008548111156120545760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610cb9565b600a546001600160a01b03831660009081526020819052604090205461207a9083612d5d565b11156120be5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610cb9565b612204565b6001600160a01b03821660009081526024602052604090205460ff16801561210457506001600160a01b03831660009081526023602052604090205460ff16155b1561217a576008548111156120be5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610cb9565b6001600160a01b03821660009081526023602052604090205460ff1661220457600a546001600160a01b0383166000908152602081905260409020546121c09083612d5d565b11156122045760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610cb9565b3060009081526020819052604090205460095481108015908190612230575060115462010000900460ff165b80156122465750600554600160a01b900460ff16155b801561226b57506001600160a01b03851660009081526024602052604090205460ff16155b801561229057506001600160a01b03851660009081526022602052604090205460ff16155b80156122b557506001600160a01b03841660009081526022602052604090205460ff16155b156122e3576005805460ff60a01b1916600160a01b1790556122d5610ee0565b6005805460ff60a01b191690555b6005546001600160a01b03861660009081526022602052604090205460ff600160a01b90920482161591168061233157506001600160a01b03851660009081526022602052604090205460ff165b1561233a575060005b6000811561251f576001600160a01b03861660009081526024602052604090205460ff16801561236c57506000601954115b15612424576064601954866123819190612d24565b61238b9190612d3b565b9050601954601b548261239e9190612d24565b6123a89190612d3b565b601e60008282546123b99190612d5d565b9091555050601954601c546123ce9083612d24565b6123d89190612d3b565b601f60008282546123e99190612d5d565b9091555050601954601a546123fe9083612d24565b6124089190612d3b565b601d60008282546124199190612d5d565b909155506125019050565b6001600160a01b03871660009081526024602052604090205460ff16801561244e57506000601554115b15612501576064601554866124639190612d24565b61246d9190612d3b565b9050601554601754826124809190612d24565b61248a9190612d3b565b601e600082825461249b9190612d5d565b90915550506015546018546124b09083612d24565b6124ba9190612d3b565b601f60008282546124cb9190612d5d565b90915550506015546016546124e09083612d24565b6124ea9190612d3b565b601d60008282546124fb9190612d5d565b90915550505b80156125125761251287308361286d565b61251c8186612d70565b94505b61252a87878761286d565b50505050505050565b600081848411156125575760405162461bcd60e51b8152600401610cb99190612976565b5060006125648486612d70565b95945050505050565b60008061257a8385612d5d565b9050838110156125cc5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610cb9565b9392505050565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061260857612608612e9f565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612686573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126aa9190612f6f565b816001815181106126bd576126bd612e9f565b60200260200101906001600160a01b031690816001600160a01b031681525050612708307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611b46565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac9479061275d908590600090869030904290600401612f8c565b600060405180830381600087803b15801561277757600080fd5b505af115801561278b573d6000803e3d6000fd5b505050505050565b6127be307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611b46565b60405163f305d71960e01b815230600482015260248101839052600060448201819052606482015261dead60848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03169063f305d71990839060c40160606040518083038185885af1158015612848573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906114cf9190612ffd565b6001600160a01b0383166128935760405162461bcd60e51b8152600401610cb990612ee7565b6001600160a01b0382166128b95760405162461bcd60e51b8152600401610cb990612f2c565b6128f68160405180606001604052806026815260200161302c602691396001600160a01b0386166000908152602081905260409020549190612533565b6001600160a01b038085166000908152602081905260408082209390935590841681522054612925908261256d565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101611c5e565b600060208083528351808285015260005b818110156129a357858101830151858201604001528201612987565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146129d957600080fd5b50565b600080604083850312156129ef57600080fd5b82356129fa816129c4565b946020939093013593505050565b600060208284031215612a1a57600080fd5b81356125cc816129c4565b60008060408385031215612a3857600080fd5b50508035926020909101359150565b600080600060608486031215612a5c57600080fd5b8335612a67816129c4565b92506020840135612a77816129c4565b929592945050506040919091013590565b8035801515811461166557600080fd5b60008060408385031215612aab57600080fd5b8235612ab6816129c4565b9150612ac460208401612a88565b90509250929050565b600080600060608486031215612ae257600080fd5b505081359360208301359350604090920135919050565b600060208284031215612b0b57600080fd5b6125cc82612a88565b60008083601f840112612b2657600080fd5b50813567ffffffffffffffff811115612b3e57600080fd5b602083019150836020828501011115612b5657600080fd5b9250929050565b60008060008060408587031215612b7357600080fd5b843567ffffffffffffffff80821115612b8b57600080fd5b612b9788838901612b14565b90965094506020870135915080821115612bb057600080fd5b50612bbd87828801612b14565b95989497509550505050565b600060208284031215612bdb57600080fd5b5035919050565b60008060408385031215612bf557600080fd5b8235612c00816129c4565b91506020830135612c10816129c4565b809150509250929050565b600080600060408486031215612c3057600080fd5b833567ffffffffffffffff80821115612c4857600080fd5b818601915086601f830112612c5c57600080fd5b813581811115612c6b57600080fd5b8760208260051b8501011115612c8057600080fd5b602092830195509350612c969186019050612a88565b90509250925092565b600181811c90821680612cb357607f821691505b602082108103612cd357634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417610c8957610c89612d0e565b600082612d5857634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115610c8957610c89612d0e565b81810381811115610c8957610c89612d0e565b634e487b7160e01b600052604160045260246000fd5b601f82111561125157600081815260208120601f850160051c81016020861015612dc05750805b601f850160051c820191505b8181101561278b57828155600101612dcc565b67ffffffffffffffff831115612df757612df7612d83565b612e0b83612e058354612c9f565b83612d99565b6000601f841160018114612e3f5760008515612e275750838201355b600019600387901b1c1916600186901b1783556114cf565b600083815260209020601f19861690835b82811015612e705786850135825560209485019460019092019101612e50565b5086821015612e8d5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b634e487b7160e01b600052603260045260246000fd5b600060018201612ec757612ec7612d0e565b5060010190565b600060208284031215612ee057600080fd5b5051919050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600060208284031215612f8157600080fd5b81516125cc816129c4565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612fdc5784516001600160a01b031683529383019391830191600101612fb7565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561301257600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220f0d580538c2d86985a7bf0d80db40c4012c2675524fe4f6c53661ca932e588cf64736f6c63430008130033

Deployed Bytecode Sourcemap

22958:15852:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5278:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7445:169;;;;;;;;;;-1:-1:-1;7445:169:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;7445:169:0;1023:187:1;24684:64:0;;;;;;;;;;-1:-1:-1;24684:64:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;27794:360;;;;;;;;;;-1:-1:-1;27794:360:0;;;;;:::i;:::-;;:::i;:::-;;22998:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1911:32:1;;;1893:51;;1881:2;1866:18;22998:51:0;1720:230:1;6398:108:0;;;;;;;;;;-1:-1:-1;6486:12:0;;6398:108;;;2101:25:1;;;2089:2;2074:18;6398:108:0;1955:177:1;23576:47:0;;;;;;;;;;;;;;;;23386:36;;;;;;;;;;;;;;;;24412:33;;;;;;;;;;;;;;;;24372;;;;;;;;;;;;;;;;8096:355;;;;;;;;;;-1:-1:-1;8096:355:0;;;;;:::i;:::-;;:::i;23101:53::-;;;;;;;;;;;;23147:6;23101:53;;23482:45;;;;;;;;;;;;;;;;29564:131;;;;;;;;;;-1:-1:-1;29564:131:0;;;;;:::i;:::-;;:::i;23442:33::-;;;;;;;;;;-1:-1:-1;23442:33:0;;;;;;;;6240:93;;;;;;;;;;-1:-1:-1;6240:93:0;;6323:2;2948:36:1;;2936:2;2921:18;6240:93:0;2806:184:1;8860:218:0;;;;;;;;;;-1:-1:-1;8860:218:0;;;;;:::i;:::-;;:::i;23056:38::-;;;;;;;;;;;;;;;23674:33;;;;;;;;;;-1:-1:-1;23674:33:0;;;;;;;;29826:125;;;;;;;;;;-1:-1:-1;29826:125:0;;;;;:::i;:::-;-1:-1:-1;;;;;29915:28:0;29891:4;29915:28;;;:19;:28;;;;;;;;;29826:125;24223:28;;;;;;;;;;;;;;;;35679:1522;;;;;;;;;;;;;:::i;23754:31::-;;;;;;;;;;-1:-1:-1;23754:31:0;;;;;;;;;;;6569:127;;;;;;;;;;-1:-1:-1;6569:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;6670:18:0;6643:7;6670:18;;;;;;;;;;;;6569:127;19743:148;;;;;;;;;;;;;:::i;38689:116::-;;;;;;;;;;;;;:::i;28162:144::-;;;;;;;;;;-1:-1:-1;28162:144:0;;;;;:::i;:::-;;:::i;23193:30::-;;;;;;;;;;-1:-1:-1;23193:30:0;;;;-1:-1:-1;;;;;23193:30:0;;;24112;;;;;;;;;;;;;;;;28519:369;;;;;;;;;;-1:-1:-1;28519:369:0;;;;;:::i;:::-;;:::i;29707:111::-;;;;;;;;;;-1:-1:-1;29707:111:0;;;;;:::i;:::-;;:::i;19101:79::-;;;;;;;;;;-1:-1:-1;19166:6:0;;-1:-1:-1;;;;;19166:6:0;19101:79;;23230:24;;;;;;;;;;-1:-1:-1;23230:24:0;;;;-1:-1:-1;;;;;23230:24:0;;;24258:31;;;;;;;;;;;;;;;;28406:101;;;;;;;;;;-1:-1:-1;28406:101:0;;;;;:::i;:::-;;:::i;5497:104::-;;;;;;;;;;;;;:::i;24186:24::-;;;;;;;;;;;;;;;;23630:35;;;;;;;;;;;;;;;;24452:27;;;;;;;;;;;;;;;;24334:25;;;;;;;;;;;;;;;;9581:269;;;;;;;;;;-1:-1:-1;9581:269:0;;;;;:::i;:::-;;:::i;23534:29::-;;;;;;;;;;;;;;;;6909:175;;;;;;;;;;-1:-1:-1;6909:175:0;;;;;:::i;:::-;;:::i;24906:58::-;;;;;;;;;;-1:-1:-1;24906:58:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;23714:33;;;;;;;;;;-1:-1:-1;23714:33:0;;;;;;;;;;;29286:132;;;;;;;;;;-1:-1:-1;29286:132:0;;;;;:::i;:::-;;:::i;28900:378::-;;;;;;;;;;-1:-1:-1;28900:378:0;;;;;:::i;:::-;;:::i;38176:381::-;;;;;;;;;;-1:-1:-1;38176:381:0;;;;;:::i;:::-;;:::i;24488:33::-;;;;;;;;;;;;;:::i;24030:39::-;;;;;;;;;;-1:-1:-1;24030:39:0;;;;;;;;23267:35;;;;;;;;;;;;;;;;27075:153;;;;;;;;;;;;;:::i;27519:263::-;;;;;;;;;;-1:-1:-1;27519:263:0;;;;;:::i;:::-;;:::i;24078:27::-;;;;;;;;;;;;;;;;7147:151;;;;;;;;;;-1:-1:-1;7147:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;7263:18:0;;;7236:7;7263:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;7147:151;24528:34;;;;;;;;;;;;;:::i;30175:164::-;;;;;;;;;;;;;:::i;38567:114::-;;;;;;;;;;;;;:::i;23309:33::-;;;;;;;;;;;;;;;;27284:161;;;;;;;;;;;;;:::i;24149:30::-;;;;;;;;;;;;;;;;20046:244;;;;;;;;;;-1:-1:-1;20046:244:0;;;;;:::i;:::-;;:::i;24296:31::-;;;;;;;;;;;;;;;;23349:24;;;;;;;;;;;;;;;;29959:208;;;;;;;;;;-1:-1:-1;29959:208:0;;;;;:::i;:::-;;:::i;23977:46::-;;;;;;;;;;-1:-1:-1;23977:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;37209:902;;;;;;;;;;-1:-1:-1;37209:902:0;;;;;:::i;:::-;;:::i;5278:100::-;5332:13;5365:5;5358:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5278:100;:::o;7445:169::-;7528:4;7545:39;759:10;7568:7;7577:6;7545:8;:39::i;:::-;-1:-1:-1;7602:4:0;7445:169;;;;;:::o;27794:360::-;19313:6;;-1:-1:-1;;;;;19313:6:0;759:10;19313:22;19305:67;;;;-1:-1:-1;;;19305:67:0;;;;;;;:::i;:::-;;;;;;;;;27900:1:::1;27891:5;:10;;27883:68;;;::::0;-1:-1:-1;;;27883:68:0;;7285:2:1;27883:68:0::1;::::0;::::1;7267:21:1::0;7324:2;7304:18;;;7297:30;7363:34;7343:18;;;7336:62;-1:-1:-1;;;7414:18:1;;;7407:43;7467:19;;27883:68:0::1;7083:409:1::0;27883:68:0::1;28015:4;28010:3;28002:5;27986:13;6486:12:::0;;;6398:108;27986:13:::1;:21;;;;:::i;:::-;:27;;;;:::i;:::-;27985:34;;;;:::i;:::-;27962:20;:57:::0;28048:1:::1;28038:11:::0;::::1;;28030:58;;;::::0;-1:-1:-1;;;28030:58:0;;8226:2:1;28030:58:0::1;::::0;::::1;8208:21:1::0;8265:2;8245:18;;;8238:30;8304:34;8284:18;;;8277:62;-1:-1:-1;;;8355:18:1;;;8348:32;8397:19;;28030:58:0::1;8024:398:1::0;28030:58:0::1;28142:4;28137:3;28128:6;28112:13;6486:12:::0;;;6398:108;28112:13:::1;:22;;;;:::i;:::-;:28;;;;:::i;:::-;28111:35;;;;:::i;:::-;28099:9;:47:::0;-1:-1:-1;;27794:360:0:o;8096:355::-;8236:4;8253:36;8263:6;8271:9;8282:6;8253:9;:36::i;:::-;8300:121;8309:6;759:10;8331:89;8369:6;8331:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;8331:19:0;;;;;;:11;:19;;;;;;;;759:10;8331:33;;;;;;;;;;:37;:89::i;:::-;8300:8;:121::i;:::-;-1:-1:-1;8439:4:0;8096:355;;;;;:::o;29564:131::-;19313:6;;-1:-1:-1;;;;;19313:6:0;759:10;19313:22;19305:67;;;;-1:-1:-1;;;19305:67:0;;;;;;;:::i;:::-;29651:15:::1;:36:::0;;-1:-1:-1;;;;;;29651:36:0::1;-1:-1:-1::0;;;;;29651:36:0;;;::::1;::::0;;;::::1;::::0;;29564:131::o;8860:218::-;759:10;8948:4;8997:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;8997:34:0;;;;;;;;;;8948:4;;8965:83;;8988:7;;8997:50;;9036:10;8997:38;:50::i;35679:1522::-;35761:4;35717:23;6670:18;;;;;;;;;;;35717:50;;35778:25;35848:12;;35827:18;;35806;;:39;;;;:::i;:::-;:54;;;;:::i;:::-;35778:82;-1:-1:-1;35871:12:0;35907:20;;;:46;;-1:-1:-1;35931:22:0;;35907:46;35904:60;;;35956:7;;;35679:1522::o;35904:60::-;35997:18;;:23;;36018:2;35997:23;:::i;:::-;35979:15;:41;35976:111;;;36052:18;;:23;;36073:2;36052:23;:::i;:::-;36034:41;;35976:111;36156:23;36241:1;36221:17;36200:18;;36182:15;:36;;;;:::i;:::-;:56;;;;:::i;:::-;:60;;;;:::i;:::-;36156:86;-1:-1:-1;36253:26:0;36282:33;36156:86;36282:15;:33;:::i;:::-;36253:62;-1:-1:-1;36364:21:0;36398:36;36253:62;36398:16;:36::i;:::-;36456:18;36477:41;36501:17;36477:21;:41;:::i;:::-;36456:62;;36539:23;36597:17;36578:18;;36565:10;:31;;;;:::i;:::-;:49;;;;:::i;:::-;36539:75;;36625:17;36671;36658:12;;36645:10;:25;;;;:::i;:::-;:43;;;;:::i;:::-;36625:63;-1:-1:-1;36709:23:0;36625:63;36735:28;36748:15;36735:10;:28;:::i;:::-;:40;;;;:::i;:::-;36817:1;36796:18;:22;;;36829:18;:22;;;36862:12;:16;;;36920:9;;36912:45;;36709:66;;-1:-1:-1;;;;;;36920:9:0;;36943;;36912:45;36817:1;36912:45;36943:9;36920;36912:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36899:58:0;;-1:-1:-1;;36981:19:0;;;;;:42;;;37022:1;37004:15;:19;36981:42;36978:119;;;37039:46;37052:15;37069;37039:12;:46::i;:::-;37138:15;;37130:63;;-1:-1:-1;;;;;37138:15:0;;;;37167:21;;37130:63;;;;37167:21;37138:15;37130:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;35679:1522:0:o;19743:148::-;19313:6;;-1:-1:-1;;;;;19313:6:0;759:10;19313:22;19305:67;;;;-1:-1:-1;;;19305:67:0;;;;;;;:::i;:::-;19834:6:::1;::::0;19813:40:::1;::::0;19850:1:::1;::::0;-1:-1:-1;;;;;19834:6:0::1;::::0;19813:40:::1;::::0;19850:1;;19813:40:::1;19864:6;:19:::0;;-1:-1:-1;;;;;;19864:19:0::1;::::0;;19743:148::o;38689:116::-;38744:13;38777:20;38770:27;;;;;:::i;28162:144::-;19313:6;;-1:-1:-1;;;;;19313:6:0;759:10;19313:22;19305:67;;;;-1:-1:-1;;;19305:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;28252:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;28252:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;28162:144::o;28519:369::-;19313:6;;-1:-1:-1;;;;;19313:6:0;759:10;19313:22;19305:67;;;;-1:-1:-1;;;19305:67:0;;;;;;;:::i;:::-;28635:15:::1;:31:::0;;;28677:15:::1;:31:::0;;;28719:9:::1;:19:::0;;;28731:7;28764:33:::1;28695:13:::0;28653;28764:33:::1;:::i;:::-;:45;;;;:::i;:::-;28749:12;:60:::0;;;28844:2:::1;-1:-1:-1::0;28828:18:0::1;28820:60;;;::::0;-1:-1:-1;;;28820:60:0;;9102:2:1;28820:60:0::1;::::0;::::1;9084:21:1::0;9141:2;9121:18;;;9114:30;9180:31;9160:18;;;9153:59;9229:18;;28820:60:0::1;8900:353:1::0;28820:60:0::1;28519:369:::0;;;:::o;29707:111::-;19313:6;;-1:-1:-1;;;;;19313:6:0;759:10;19313:22;19305:67;;;;-1:-1:-1;;;19305:67:0;;;;;;;:::i;:::-;29789:9:::1;:21:::0;;-1:-1:-1;;;;;;29789:21:0::1;-1:-1:-1::0;;;;;29789:21:0;;;::::1;::::0;;;::::1;::::0;;29707:111::o;28406:101::-;19313:6;;-1:-1:-1;;;;;19313:6:0;759:10;19313:22;19305:67;;;;-1:-1:-1;;;19305:67:0;;;;;;;:::i;:::-;28478:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;28478:21:0;;::::1;::::0;;;::::1;::::0;;28406:101::o;5497:104::-;5553:13;5586:7;5579:14;;;;;:::i;9581:269::-;9674:4;9691:129;759:10;9714:7;9723:96;9762:15;9723:96;;;;;;;;;;;;;;;;;759:10;9723:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;9723:34:0;;;;;;;;;;;;:38;:96::i;6909:175::-;6995:4;7012:42;759:10;7036:9;7047:6;7012:9;:42::i;29286:132::-;19313:6;;-1:-1:-1;;;;;19313:6:0;759:10;19313:22;19305:67;;;;-1:-1:-1;;;19305:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29371:28:0;;;::::1;;::::0;;;:19:::1;:28;::::0;;;;:39;;-1:-1:-1;;29371:39:0::1;::::0;::::1;;::::0;;;::::1;::::0;;29286:132::o;28900:378::-;19313:6;;-1:-1:-1;;;;;19313:6:0;759:10;19313:22;19305:67;;;;-1:-1:-1;;;19305:67:0;;;;;;;:::i;:::-;29017:16:::1;:32:::0;;;29060:16:::1;:32:::0;;;29103:10:::1;:20:::0;;;29116:7;29150:35:::1;29079:13:::0;29036;29150:35:::1;:::i;:::-;:48;;;;:::i;:::-;29134:13;:64:::0;;;29234:2:::1;-1:-1:-1::0;29217:19:0::1;29209:61;;;::::0;-1:-1:-1;;;29209:61:0;;9102:2:1;29209:61:0::1;::::0;::::1;9084:21:1::0;9141:2;9121:18;;;9114:30;9180:31;9160:18;;;9153:59;9229:18;;29209:61:0::1;8900:353:1::0;38176:381:0;19166:6;;-1:-1:-1;;;;;19166:6:0;38346:10;:31;38324:119;;;;-1:-1:-1;;;38324:119:0;;9460:2:1;38324:119:0;;;9442:21:1;9499:2;9479:18;;;9472:30;9538:34;9518:18;;;9511:62;-1:-1:-1;;;9589:18:1;;;9582:36;9635:19;;38324:119:0;9258:402:1;38324:119:0;38456:19;:42;38478:20;;38456:19;:42;:::i;:::-;-1:-1:-1;38509:20:0;:44;38532:21;;38509:20;:44;:::i;:::-;;38176:381;;;;:::o;24488:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27075:153::-;19313:6;;-1:-1:-1;;;;;19313:6:0;759:10;19313:22;19305:67;;;;-1:-1:-1;;;19305:67:0;;;;;;;:::i;:::-;27128:13:::1;:20:::0;;-1:-1:-1;;27159:18:0;;;;;27205:15:::1;27188:14;:32:::0;27075:153::o;27519:263::-;19313:6;;27600:4;;-1:-1:-1;;;;;19313:6:0;759:10;19313:22;19305:67;;;;-1:-1:-1;;;19305:67:0;;;;;;;:::i;:::-;27636:1:::1;27623:9;:14;;27615:77;;;::::0;-1:-1:-1;;;27615:77:0;;12057:2:1;27615:77:0::1;::::0;::::1;12039:21:1::0;12096:2;12076:18;;;12069:30;12135:34;12115:18;;;12108:62;-1:-1:-1;;;12186:18:1;;;12179:48;12244:19;;27615:77:0::1;11855:414:1::0;27615:77:0::1;27751:3;27739:9;27723:13;6486:12:::0;;;6398:108;27723:13:::1;:25;;;;:::i;:::-;:31;;;;:::i;:::-;27702:18;:52:::0;-1:-1:-1;27771:4:0::1;19383:1;27519:263:::0;;;:::o;24528:34::-;;;;;;;:::i;30175:164::-;19313:6;;30225:4;;-1:-1:-1;;;;;19313:6:0;759:10;19313:22;19305:67;;;;-1:-1:-1;;;19305:67:0;;;;;;;:::i;:::-;30242:12:::1;30260:7;19166:6:::0;;-1:-1:-1;;;;;19166:6:0;;19101:79;30260:7:::1;-1:-1:-1::0;;;;;30260:12:0::1;30280:21;30260:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;30241:65:0;;-1:-1:-1;;;30175:164:0;:::o;38567:114::-;38621:13;38654:19;38647:26;;;;;:::i;27284:161::-;19313:6;;27338:4;;-1:-1:-1;;;;;19313:6:0;759:10;19313:22;19305:67;;;;-1:-1:-1;;;19305:67:0;;;;;;;:::i;:::-;-1:-1:-1;27354:14:0::1;:22:::0;;-1:-1:-1;;27354:22:0;;::::1;::::0;;;27387:20:::1;:28:::0;;;;::::1;::::0;;27354:22;27284:161;:::o;20046:244::-;19313:6;;-1:-1:-1;;;;;19313:6:0;759:10;19313:22;19305:67;;;;-1:-1:-1;;;19305:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;20135:22:0;::::1;20127:73;;;::::0;-1:-1:-1;;;20127:73:0;;12476:2:1;20127:73:0::1;::::0;::::1;12458:21:1::0;12515:2;12495:18;;;12488:30;12554:34;12534:18;;;12527:62;-1:-1:-1;;;12605:18:1;;;12598:36;12651:19;;20127:73:0::1;12274:402:1::0;20127:73:0::1;20237:6;::::0;20216:38:::1;::::0;-1:-1:-1;;;;;20216:38:0;;::::1;::::0;20237:6:::1;::::0;20216:38:::1;::::0;20237:6:::1;::::0;20216:38:::1;20265:6;:17:::0;;-1:-1:-1;;;;;;20265:17:0::1;-1:-1:-1::0;;;;;20265:17:0;;;::::1;::::0;;;::::1;::::0;;20046:244::o;29959:208::-;19313:6;;-1:-1:-1;;;;;19313:6:0;759:10;19313:22;19305:67;;;;-1:-1:-1;;;19305:67:0;;;;;;;:::i;:::-;30066:9:::1;30062:98;30081:18:::0;;::::1;30062:98;;;30144:4;30116:13;:25;30130:7;;30138:1;30130:10;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;30116:25:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;30116:25:0;:32;;-1:-1:-1;;30116:32:0::1;::::0;::::1;;::::0;;;::::1;::::0;;30101:3;::::1;::::0;::::1;:::i;:::-;;;;30062:98;;;;29959:208:::0;;;:::o;37209:902::-;19313:6;;37293:4;;-1:-1:-1;;;;;19313:6:0;759:10;19313:22;19305:67;;;;-1:-1:-1;;;19305:67:0;;;;;;;:::i;:::-;37358:19:::1;;37335:20;;:42;;;;:::i;:::-;37317:15;:60;37309:106;;;::::0;-1:-1:-1;;;37309:106:0;;13155:2:1;37309:106:0::1;::::0;::::1;13137:21:1::0;;;13174:18;;;13167:30;13233:34;13213:18;;;13206:62;13285:18;;37309:106:0::1;12953:356:1::0;37309:106:0::1;37445:4;37434:7;:15;;37426:70;;;::::0;-1:-1:-1;;;37426:70:0;;13516:2:1;37426:70:0::1;::::0;::::1;13498:21:1::0;13555:2;13535:18;;;13528:30;13594:34;13574:18;;;13567:62;-1:-1:-1;;;13645:18:1;;;13638:40;13695:19;;37426:70:0::1;13314:406:1::0;37426:70:0::1;37530:15;37507:20;:38:::0;37639:29:::1;::::0;-1:-1:-1;;;37639:29:0;;-1:-1:-1;;;;;37654:13:0::1;1911:32:1::0;37639:29:0::1;::::0;::::1;1893:51:1::0;37608:28:0::1;::::0;37639:4:::1;::::0;:14:::1;::::0;1866:18:1;;37639:29:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;37608:60:::0;-1:-1:-1;37726:20:0::1;37780:5;37749:30;37772:7:::0;37608:60;37749:30:::1;:::i;:::-;:36;;;;:::i;:::-;37726:59:::0;-1:-1:-1;37820:16:0;;37816:109:::1;;37852:61;37868:13;37891:6;37900:12;37852:15;:61::i;:::-;38008:19;38045:13;38008:51;;38070:4;-1:-1:-1::0;;;;;38070:9:0::1;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;38099:4:0::1;::::0;37209:902;-1:-1:-1;;;;;;;;37209:902:0:o;12767:380::-;-1:-1:-1;;;;;12903:19:0;;12895:68;;;;-1:-1:-1;;;12895:68:0;;14116:2:1;12895:68:0;;;14098:21:1;14155:2;14135:18;;;14128:30;14194:34;14174:18;;;14167:62;-1:-1:-1;;;14245:18:1;;;14238:34;14289:19;;12895:68:0;13914:400:1;12895:68:0;-1:-1:-1;;;;;12982:21:0;;12974:68;;;;-1:-1:-1;;;12974:68:0;;14521:2:1;12974:68:0;;;14503:21:1;14560:2;14540:18;;;14533:30;14599:34;14579:18;;;14572:62;-1:-1:-1;;;14650:18:1;;;14643:32;14692:19;;12974:68:0;14319:398:1;12974:68:0;-1:-1:-1;;;;;13055:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;13107:32;;2101:25:1;;;13107:32:0;;2074:18:1;13107:32:0;;;;;;;;12767:380;;;:::o;30347:4180::-;-1:-1:-1;;;;;30479:18:0;;30471:68;;;;-1:-1:-1;;;30471:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30558:16:0;;30550:64;;;;-1:-1:-1;;;30550:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30634:19:0;;;;;;:13;:19;;;;;;;;30633:20;:42;;;;-1:-1:-1;;;;;;30658:17:0;;;;;;:13;:17;;;;;;;;30657:18;30633:42;30625:65;;;;-1:-1:-1;;;30625:65:0;;15734:2:1;30625:65:0;;;15716:21:1;15773:2;15753:18;;;15746:30;-1:-1:-1;;;15792:18:1;;;15785:41;15843:18;;30625:65:0;15532:335:1;30625:65:0;30721:6;30731:1;30721:11;30718:92;;30749:28;30765:4;30771:2;30775:1;30749:15;:28::i;30718:92::-;30833:14;;;;30830:1841;;;19166:6;;-1:-1:-1;;;;;30885:15:0;;;19166:6;;30885:15;;;;:49;;-1:-1:-1;19166:6:0;;-1:-1:-1;;;;;30921:13:0;;;19166:6;;30921:13;;30885:49;:86;;;;-1:-1:-1;;;;;;30955:16:0;;;;30885:86;:128;;;;-1:-1:-1;;;;;;30992:21:0;;31006:6;30992:21;;30885:128;:158;;;;-1:-1:-1;31035:8:0;;-1:-1:-1;;;31035:8:0;;;;31034:9;30885:158;30863:1797;;;31081:13;;;;;;;31077:148;;-1:-1:-1;;;;;31126:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;31155:23:0;;;;;;:19;:23;;;;;;;;31126:52;31118:87;;;;-1:-1:-1;;;31118:87:0;;16074:2:1;31118:87:0;;;16056:21:1;16113:2;16093:18;;;16086:30;-1:-1:-1;;;16132:18:1;;;16125:52;16194:18;;31118:87:0;15872:346:1;31118:87:0;31383:20;;;;31379:423;;;19166:6;;-1:-1:-1;;;;;31431:13:0;;;19166:6;;31431:13;;;;:47;;;31462:15;-1:-1:-1;;;;;31448:30:0;:2;-1:-1:-1;;;;;31448:30:0;;;31431:47;:79;;;;;31496:13;-1:-1:-1;;;;;31482:28:0;:2;-1:-1:-1;;;;;31482:28:0;;;31431:79;31427:356;;;31575:9;31546:39;;;;:28;:39;;;;;;31588:12;-1:-1:-1;31538:140:0;;;;-1:-1:-1;;;31538:140:0;;16425:2:1;31538:140:0;;;16407:21:1;16464:2;16444:18;;;16437:30;16503:34;16483:18;;;16476:62;16574:34;16554:18;;;16547:62;-1:-1:-1;;;16625:19:1;;;16618:40;16675:19;;31538:140:0;16223:477:1;31538:140:0;31734:9;31705:39;;;;:28;:39;;;;;31747:12;31705:54;;31427:356;-1:-1:-1;;;;;31871:31:0;;;;;;:25;:31;;;;;;;;:71;;;;-1:-1:-1;;;;;;31907:35:0;;;;;;:31;:35;;;;;;;;31906:36;31871:71;31867:778;;;31989:20;;31979:6;:30;;31971:96;;;;-1:-1:-1;;;31971:96:0;;16907:2:1;31971:96:0;;;16889:21:1;16946:2;16926:18;;;16919:30;16985:34;16965:18;;;16958:62;-1:-1:-1;;;17036:18:1;;;17029:51;17097:19;;31971:96:0;16705:417:1;31971:96:0;32128:9;;-1:-1:-1;;;;;6670:18:0;;6643:7;6670:18;;;;;;;;;;;32102:22;;:6;:22;:::i;:::-;:35;;32094:67;;;;-1:-1:-1;;;32094:67:0;;17329:2:1;32094:67:0;;;17311:21:1;17368:2;17348:18;;;17341:30;-1:-1:-1;;;17387:18:1;;;17380:49;17446:18;;32094:67:0;17127:343:1;32094:67:0;31867:778;;;-1:-1:-1;;;;;32255:29:0;;;;;;:25;:29;;;;;;;;:71;;;;-1:-1:-1;;;;;;32289:37:0;;;;;;:31;:37;;;;;;;;32288:38;32255:71;32251:394;;;32373:20;;32363:6;:30;;32355:97;;;;-1:-1:-1;;;32355:97:0;;17677:2:1;32355:97:0;;;17659:21:1;17716:2;17696:18;;;17689:30;17755:34;17735:18;;;17728:62;-1:-1:-1;;;17806:18:1;;;17799:52;17868:19;;32355:97:0;17475:418:1;32251:394:0;-1:-1:-1;;;;;32499:35:0;;;;;;:31;:35;;;;;;;;32495:150;;32592:9;;-1:-1:-1;;;;;6670:18:0;;6643:7;6670:18;;;;;;;;;;;32566:22;;:6;:22;:::i;:::-;:35;;32558:67;;;;-1:-1:-1;;;32558:67:0;;17329:2:1;32558:67:0;;;17311:21:1;17368:2;17348:18;;;17341:30;-1:-1:-1;;;17387:18:1;;;17380:49;17446:18;;32558:67:0;17127:343:1;32558:67:0;32734:4;32685:28;6670:18;;;;;;;;;;;32800;;32776:42;;;;;;;32849:35;;-1:-1:-1;32873:11:0;;;;;;;32849:35;:61;;;;-1:-1:-1;32902:8:0;;-1:-1:-1;;;32902:8:0;;;;32901:9;32849:61;:110;;;;-1:-1:-1;;;;;;32928:31:0;;;;;;:25;:31;;;;;;;;32927:32;32849:110;:153;;;;-1:-1:-1;;;;;;32977:25:0;;;;;;:19;:25;;;;;;;;32976:26;32849:153;:194;;;;-1:-1:-1;;;;;;33020:23:0;;;;;;:19;:23;;;;;;;;33019:24;32849:194;32831:338;;;33070:8;:15;;-1:-1:-1;;;;33070:15:0;-1:-1:-1;;;33070:15:0;;;33114:10;:8;:10::i;:::-;33141:8;:16;;-1:-1:-1;;;;33141:16:0;;;32831:338;33197:8;;-1:-1:-1;;;;;33306:25:0;;33181:12;33306:25;;;:19;:25;;;;;;33197:8;-1:-1:-1;;;33197:8:0;;;;;33196:9;;33306:25;;:52;;-1:-1:-1;;;;;;33335:23:0;;;;;;:19;:23;;;;;;;;33306:52;33303:99;;;-1:-1:-1;33385:5:0;33303:99;33422:12;33526:7;33523:951;;;-1:-1:-1;;;;;33577:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;33626:1;33610:13;;:17;33577:50;33573:732;;;33677:3;33663:13;;33654:6;:22;;;;:::i;:::-;:26;;;;:::i;:::-;33647:33;;33747:13;;33728:16;;33721:4;:23;;;;:::i;:::-;:39;;;;:::i;:::-;33699:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;33815:13:0;;33802:10;;33795:17;;:4;:17;:::i;:::-;:33;;;;:::i;:::-;33779:12;;:49;;;;;;;:::i;:::-;;;;-1:-1:-1;;33895:13:0;;33876:16;;33869:23;;:4;:23;:::i;:::-;:39;;;;:::i;:::-;33847:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;33573:732:0;;-1:-1:-1;33573:732:0;;-1:-1:-1;;;;;33969:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;34019:1;34004:12;;:16;33969:51;33966:339;;;34067:3;34054:12;;34045:6;:21;;;;:::i;:::-;:25;;;;:::i;:::-;34038:32;;34133:12;;34115:15;;34108:4;:22;;;;:::i;:::-;:37;;;;:::i;:::-;34086:18;;:59;;;;;;;:::i;:::-;;;;-1:-1:-1;;34199:12:0;;34187:9;;34180:16;;:4;:16;:::i;:::-;:31;;;;:::i;:::-;34164:12;;:47;;;;;;;:::i;:::-;;;;-1:-1:-1;;34277:12:0;;34259:15;;34252:22;;:4;:22;:::i;:::-;:37;;;;:::i;:::-;34230:18;;:59;;;;;;;:::i;:::-;;;;-1:-1:-1;;33966:339:0;34336:8;;34333:93;;34368:42;34384:4;34398;34405;34368:15;:42::i;:::-;34448:14;34458:4;34448:14;;:::i;:::-;;;33523:951;34486:33;34502:4;34508:2;34512:6;34486:15;:33::i;:::-;30460:4067;;;;30347:4180;;;:::o;15048:192::-;15134:7;15170:12;15162:6;;;;15154:29;;;;-1:-1:-1;;;15154:29:0;;;;;;;;:::i;:::-;-1:-1:-1;15194:9:0;15206:5;15210:1;15206;:5;:::i;:::-;15194:17;15048:192;-1:-1:-1;;;;;15048:192:0:o;14145:181::-;14203:7;;14235:5;14239:1;14235;:5;:::i;:::-;14223:17;;14264:1;14259;:6;;14251:46;;;;-1:-1:-1;;;14251:46:0;;18100:2:1;14251:46:0;;;18082:21:1;18139:2;18119:18;;;18112:30;18178:29;18158:18;;;18151:57;18225:18;;14251:46:0;17898:351:1;14251:46:0;14317:1;14145:181;-1:-1:-1;;;14145:181:0:o;34535:601::-;34687:16;;;34701:1;34687:16;;;;;;;;34663:21;;34687:16;;;;;;;;;;-1:-1:-1;34687:16:0;34663:40;;34732:4;34714;34719:1;34714:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;34714:23:0;;;-1:-1:-1;;;;;34714:23:0;;;;;34758:15;-1:-1:-1;;;;;34758:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;34748:4;34753:1;34748:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;34748:32:0;;;-1:-1:-1;;;;;34748:32:0;;;;;34793:62;34810:4;34825:15;34843:11;34793:8;:62::i;:::-;34894:224;;-1:-1:-1;;;34894:224:0;;-1:-1:-1;;;;;34894:15:0;:66;;;;:224;;34975:11;;35001:1;;35045:4;;35072;;35092:15;;34894:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34590:546;34535:601;:::o;35154:517::-;35302:62;35319:4;35334:15;35352:11;35302:8;:62::i;:::-;35407:256;;-1:-1:-1;;;35407:256:0;;35479:4;35407:256;;;19836:34:1;19886:18;;;19879:34;;;35525:1:0;19929:18:1;;;19922:34;;;19972:18;;;19965:34;23147:6:0;20015:19:1;;;20008:44;35637:15:0;20068:19:1;;;20061:35;35407:15:0;-1:-1:-1;;;;;35407:31:0;;;;35446:9;;19770:19:1;;35407:256:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;10340:573::-;-1:-1:-1;;;;;10480:20:0;;10472:70;;;;-1:-1:-1;;;10472:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;10561:23:0;;10553:71;;;;-1:-1:-1;;;10553:71:0;;;;;;;:::i;:::-;10717;10739:6;10717:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;10717:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;10697:17:0;;;:9;:17;;;;;;;;;;;:91;;;;10822:20;;;;;;;:32;;10847:6;10822:24;:32::i;:::-;-1:-1:-1;;;;;10799:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;10870:35;2101:25:1;;;10799:20:0;;10870:35;;;;;;2074:18:1;10870:35:0;1955:177:1;14:548;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;622:70;567:131;:::o;703:315::-;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1215:247::-;1274:6;1327:2;1315:9;1306:7;1302:23;1298:32;1295:52;;;1343:1;1340;1333:12;1295:52;1382:9;1369:23;1401:31;1426:5;1401:31;:::i;1467:248::-;1535:6;1543;1596:2;1584:9;1575:7;1571:23;1567:32;1564:52;;;1612:1;1609;1602:12;1564:52;-1:-1:-1;;1635:23:1;;;1705:2;1690:18;;;1677:32;;-1:-1:-1;1467:248:1:o;2137:456::-;2214:6;2222;2230;2283:2;2271:9;2262:7;2258:23;2254:32;2251:52;;;2299:1;2296;2289:12;2251:52;2338:9;2325:23;2357:31;2382:5;2357:31;:::i;:::-;2407:5;-1:-1:-1;2464:2:1;2449:18;;2436:32;2477:33;2436:32;2477:33;:::i;:::-;2137:456;;2529:7;;-1:-1:-1;;;2583:2:1;2568:18;;;;2555:32;;2137:456::o;2995:160::-;3060:20;;3116:13;;3109:21;3099:32;;3089:60;;3145:1;3142;3135:12;3160:315;3225:6;3233;3286:2;3274:9;3265:7;3261:23;3257:32;3254:52;;;3302:1;3299;3292:12;3254:52;3341:9;3328:23;3360:31;3385:5;3360:31;:::i;:::-;3410:5;-1:-1:-1;3434:35:1;3465:2;3450:18;;3434:35;:::i;:::-;3424:45;;3160:315;;;;;:::o;3480:316::-;3557:6;3565;3573;3626:2;3614:9;3605:7;3601:23;3597:32;3594:52;;;3642:1;3639;3632:12;3594:52;-1:-1:-1;;3665:23:1;;;3735:2;3720:18;;3707:32;;-1:-1:-1;3786:2:1;3771:18;;;3758:32;;3480:316;-1:-1:-1;3480:316:1:o;3801:180::-;3857:6;3910:2;3898:9;3889:7;3885:23;3881:32;3878:52;;;3926:1;3923;3916:12;3878:52;3949:26;3965:9;3949:26;:::i;3986:348::-;4038:8;4048:6;4102:3;4095:4;4087:6;4083:17;4079:27;4069:55;;4120:1;4117;4110:12;4069:55;-1:-1:-1;4143:20:1;;4186:18;4175:30;;4172:50;;;4218:1;4215;4208:12;4172:50;4255:4;4247:6;4243:17;4231:29;;4307:3;4300:4;4291:6;4283;4279:19;4275:30;4272:39;4269:59;;;4324:1;4321;4314:12;4269:59;3986:348;;;;;:::o;4339:721::-;4431:6;4439;4447;4455;4508:2;4496:9;4487:7;4483:23;4479:32;4476:52;;;4524:1;4521;4514:12;4476:52;4564:9;4551:23;4593:18;4634:2;4626:6;4623:14;4620:34;;;4650:1;4647;4640:12;4620:34;4689:59;4740:7;4731:6;4720:9;4716:22;4689:59;:::i;:::-;4767:8;;-1:-1:-1;4663:85:1;-1:-1:-1;4855:2:1;4840:18;;4827:32;;-1:-1:-1;4871:16:1;;;4868:36;;;4900:1;4897;4890:12;4868:36;;4939:61;4992:7;4981:8;4970:9;4966:24;4939:61;:::i;:::-;4339:721;;;;-1:-1:-1;5019:8:1;-1:-1:-1;;;;4339:721:1:o;5065:180::-;5124:6;5177:2;5165:9;5156:7;5152:23;5148:32;5145:52;;;5193:1;5190;5183:12;5145:52;-1:-1:-1;5216:23:1;;5065:180;-1:-1:-1;5065:180:1:o;5250:388::-;5318:6;5326;5379:2;5367:9;5358:7;5354:23;5350:32;5347:52;;;5395:1;5392;5385:12;5347:52;5434:9;5421:23;5453:31;5478:5;5453:31;:::i;:::-;5503:5;-1:-1:-1;5560:2:1;5545:18;;5532:32;5573:33;5532:32;5573:33;:::i;:::-;5625:7;5615:17;;;5250:388;;;;;:::o;5643:689::-;5735:6;5743;5751;5804:2;5792:9;5783:7;5779:23;5775:32;5772:52;;;5820:1;5817;5810:12;5772:52;5860:9;5847:23;5889:18;5930:2;5922:6;5919:14;5916:34;;;5946:1;5943;5936:12;5916:34;5984:6;5973:9;5969:22;5959:32;;6029:7;6022:4;6018:2;6014:13;6010:27;6000:55;;6051:1;6048;6041:12;6000:55;6091:2;6078:16;6117:2;6109:6;6106:14;6103:34;;;6133:1;6130;6123:12;6103:34;6188:7;6181:4;6171:6;6168:1;6164:14;6160:2;6156:23;6152:34;6149:47;6146:67;;;6209:1;6206;6199:12;6146:67;6240:4;6232:13;;;;-1:-1:-1;6264:6:1;-1:-1:-1;6289:37:1;;6305:20;;;-1:-1:-1;6289:37:1;:::i;:::-;6279:47;;5643:689;;;;;:::o;6337:380::-;6416:1;6412:12;;;;6459;;;6480:61;;6534:4;6526:6;6522:17;6512:27;;6480:61;6587:2;6579:6;6576:14;6556:18;6553:38;6550:161;;6633:10;6628:3;6624:20;6621:1;6614:31;6668:4;6665:1;6658:15;6696:4;6693:1;6686:15;6550:161;;6337:380;;;:::o;6722:356::-;6924:2;6906:21;;;6943:18;;;6936:30;7002:34;6997:2;6982:18;;6975:62;7069:2;7054:18;;6722:356::o;7497:127::-;7558:10;7553:3;7549:20;7546:1;7539:31;7589:4;7586:1;7579:15;7613:4;7610:1;7603:15;7629:168;7702:9;;;7733;;7750:15;;;7744:22;;7730:37;7720:71;;7771:18;;:::i;7802:217::-;7842:1;7868;7858:132;;7912:10;7907:3;7903:20;7900:1;7893:31;7947:4;7944:1;7937:15;7975:4;7972:1;7965:15;7858:132;-1:-1:-1;8004:9:1;;7802:217::o;8427:125::-;8492:9;;;8513:10;;;8510:36;;;8526:18;;:::i;8557:128::-;8624:9;;;8645:11;;;8642:37;;;8659:18;;:::i;9665:127::-;9726:10;9721:3;9717:20;9714:1;9707:31;9757:4;9754:1;9747:15;9781:4;9778:1;9771:15;9923:545;10025:2;10020:3;10017:11;10014:448;;;10061:1;10086:5;10082:2;10075:17;10131:4;10127:2;10117:19;10201:2;10189:10;10185:19;10182:1;10178:27;10172:4;10168:38;10237:4;10225:10;10222:20;10219:47;;;-1:-1:-1;10260:4:1;10219:47;10315:2;10310:3;10306:12;10303:1;10299:20;10293:4;10289:31;10279:41;;10370:82;10388:2;10381:5;10378:13;10370:82;;;10433:17;;;10414:1;10403:13;10370:82;;10644:1206;10768:18;10763:3;10760:27;10757:53;;;10790:18;;:::i;:::-;10819:94;10909:3;10869:38;10901:4;10895:11;10869:38;:::i;:::-;10863:4;10819:94;:::i;:::-;10939:1;10964:2;10959:3;10956:11;10981:1;10976:616;;;;11636:1;11653:3;11650:93;;;-1:-1:-1;11709:19:1;;;11696:33;11650:93;-1:-1:-1;;10601:1:1;10597:11;;;10593:24;10589:29;10579:40;10625:1;10621:11;;;10576:57;11756:78;;10949:895;;10976:616;9870:1;9863:14;;;9907:4;9894:18;;-1:-1:-1;;11012:17:1;;;11113:9;11135:229;11149:7;11146:1;11143:14;11135:229;;;11238:19;;;11225:33;11210:49;;11345:4;11330:20;;;;11298:1;11286:14;;;;11165:12;11135:229;;;11139:3;11392;11383:7;11380:16;11377:159;;;11516:1;11512:6;11506:3;11500;11497:1;11493:11;11489:21;11485:34;11481:39;11468:9;11463:3;11459:19;11446:33;11442:79;11434:6;11427:95;11377:159;;;11579:1;11573:3;11570:1;11566:11;11562:19;11556:4;11549:33;10949:895;;10644:1206;;;:::o;12681:127::-;12742:10;12737:3;12733:20;12730:1;12723:31;12773:4;12770:1;12763:15;12797:4;12794:1;12787:15;12813:135;12852:3;12873:17;;;12870:43;;12893:18;;:::i;:::-;-1:-1:-1;12940:1:1;12929:13;;12813:135::o;13725:184::-;13795:6;13848:2;13836:9;13827:7;13823:23;13819:32;13816:52;;;13864:1;13861;13854:12;13816:52;-1:-1:-1;13887:16:1;;13725:184;-1:-1:-1;13725:184:1:o;14722:401::-;14924:2;14906:21;;;14963:2;14943:18;;;14936:30;15002:34;14997:2;14982:18;;14975:62;-1:-1:-1;;;15068:2:1;15053:18;;15046:35;15113:3;15098:19;;14722:401::o;15128:399::-;15330:2;15312:21;;;15369:2;15349:18;;;15342:30;15408:34;15403:2;15388:18;;15381:62;-1:-1:-1;;;15474:2:1;15459:18;;15452:33;15517:3;15502:19;;15128:399::o;18254:251::-;18324:6;18377:2;18365:9;18356:7;18352:23;18348:32;18345:52;;;18393:1;18390;18383:12;18345:52;18425:9;18419:16;18444:31;18469:5;18444:31;:::i;18510:980::-;18772:4;18820:3;18809:9;18805:19;18851:6;18840:9;18833:25;18877:2;18915:6;18910:2;18899:9;18895:18;18888:34;18958:3;18953:2;18942:9;18938:18;18931:31;18982:6;19017;19011:13;19048:6;19040;19033:22;19086:3;19075:9;19071:19;19064:26;;19125:2;19117:6;19113:15;19099:29;;19146:1;19156:195;19170:6;19167:1;19164:13;19156:195;;;19235:13;;-1:-1:-1;;;;;19231:39:1;19219:52;;19326:15;;;;19291:12;;;;19267:1;19185:9;19156:195;;;-1:-1:-1;;;;;;;19407:32:1;;;;19402:2;19387:18;;19380:60;-1:-1:-1;;;19471:3:1;19456:19;19449:35;19368:3;18510:980;-1:-1:-1;;;18510:980:1:o;20107:306::-;20195:6;20203;20211;20264:2;20252:9;20243:7;20239:23;20235:32;20232:52;;;20280:1;20277;20270:12;20232:52;20309:9;20303:16;20293:26;;20359:2;20348:9;20344:18;20338:25;20328:35;;20403:2;20392:9;20388:18;20382:25;20372:35;;20107:306;;;;;:::o

Swarm Source

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