ETH Price: $2,525.46 (+0.01%)

Token

Whitepaper (WP)
 

Overview

Max Total Supply

100,000,000 WP

Holders

49

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1,399,965.286254882812499999 WP

Value
$0.00
0x1b5bf820189947af0e1fcdb4fe32a7c59807202c
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:
Whitepaper

Compiler Version
v0.8.25+commit.b61c2a91

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-04-25
*/

/**

Wipe away the shitty competition. 

Take a look into our Whitepaper and use it to flush those crappy liar devs where they belong – straight to the toilet!

Website: https://TheBestWhitepaper.com 

SOCIAL MEDIA:
Telegram: https://t.me/thebestwhitepaper
Twitter: https://twitter.com/whitepaperroll
                                                                                                                                                                                
                                                                                                    
                                                                                                    
                          ###############                                                           
                     #################################                                              
                 #################################################****                              
              #################WP######################******WP*************                        
            #######################################******************************                   
          ############WP#######################************************************                 
         ####################################*****************************************              
       ####################################*********************************************            
      #################################WP************************************************           
     ########WP########################******************************WP********************         
    ##################################******************************************************        
    #################################********************************************************       
   #################################************WP********************************************      
   ##*#############################************************************************************     
  ################################**************************************************WP**********    
  ######################WP########***************************       *****************************   
  ###############################*************************             **************************   
  ###############################************************                ************************   
  ###############################***********************                  ***********************   
  ##############################***********************                   ***********************   
  ##############################***********************                   ************************  
  #########WP###################********WP*************                   ***********************   
  ##############################************************                  *************WP********   
  ##############################+************************               *************************   
  ##############################+*************************             **************************   
  ###################WP#########++****************************     ******************************   
  ##############################+=**********************************************WP**************    
  ##############################+=+************************************************************     
  ##############################+==+***********WP*********************************************      
  ############WP################+===+********************************************************       
  ##############################+====+******************************************************        
  ##############################+======***********************************WP***************         
  ##############################+=======+************************************************           
  ###WP#########################+=========+*********************************************            
  ############################### ==========+***********WP***************************               
  ###############################       ======++***********************************                 
  ###############################              ===+*****************************                    
  ##################WP###########                    ***********************                        
  ###############################                              ***                                  
     ############################                                                                   
          #######################                                                                   
                #################                                                                   
                     ############                                                                   
                           ######                                                                   
                                                                                                    


*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.24;
pragma experimental ABIEncoderV2;

////// lib/openzeppelin-contracts/contracts/utils/Context.sol
// OpenZeppelin Contracts v4.4.0 (utils/Context.sol)

/* pragma solidity ^0.8.0; */

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

////// lib/openzeppelin-contracts/contracts/access/Ownable.sol
// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

/* pragma solidity ^0.8.0; */

/* import "../utils/Context.sol"; */

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

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

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

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual 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 {
        _transferOwnership(address(0));
    }

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

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

////// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)

/* pragma solidity ^0.8.0; */

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
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);
}

////// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol)

/* pragma solidity ^0.8.0; */

/* import "../IERC20.sol"; */

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

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

////// lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol)

/* pragma solidity ^0.8.0; */

/* import "./IERC20.sol"; */
/* import "./extensions/IERC20Metadata.sol"; */
/* import "../../utils/Context.sol"; */

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    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);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `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);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(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 += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, 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 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 {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been 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 _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

////// lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol
// OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol)

/* pragma solidity ^0.8.0; */

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

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

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

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

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

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

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

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

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

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

interface IUniswapV2Router02 {
    function factory() external pure returns (address);

    function WETH() external pure returns (address);

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

contract Whitepaper is ERC20, Ownable {
    using SafeMath for uint256;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;

    bool private swapping;

    address public marketingWallet;
    address public devWallet;

    uint256 public maxTransactionAmount;
    uint256 public swapTokensAtAmount;
    uint256 public maxWallet;

    bool public limitsInEffect = true;
    bool public tradingActive = false;
    bool public swapEnabled = false;

    uint256 public buyMarketingFee;
    uint256 public sellMarketingFee;

    uint256 public divisor;

    /******************/

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


    event ExcludeFromFees(address indexed account, bool isExcluded);

    event marketingWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

    constructor() ERC20("Whitepaper", "WP") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

        excludeFromMaxTransaction(address(_uniswapV2Router), true);
        uniswapV2Router = _uniswapV2Router;

        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());
        excludeFromMaxTransaction(address(uniswapV2Pair), true);

        uint256 _buyMarketingFee = 0;
        uint256 _sellMarketingFee = 0;

        uint256 _divisor = 100;

        uint256 totalSupply = 100_000_000 * 1e18;

        maxTransactionAmount =  totalSupply * 2 / 100; // 2% from total supply maxTransactionAmountTxn
        maxWallet = totalSupply * 2 / 100; // 2% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 20) / 100000; // 0.02% swap wallet

        buyMarketingFee = _buyMarketingFee;
        sellMarketingFee = _sellMarketingFee;

        divisor = _divisor;

        marketingWallet = address(0x948666486114E047811D102360A06d8F96C3f40c);
        devWallet = address(0x44fd1FE1167ae0ED17824Ee090eB8807A007C5b3);

        // 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 is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(msg.sender, totalSupply);
    }

    receive() external payable {}

    // once enabled, can never be turned off
    function enableTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
    }

    // remove limits after token is stable
    function removeLimits() external onlyOwner returns (bool) {
        limitsInEffect = false;
        return true;
    }

    // change the minimum amount of tokens to sell from fees
    function updateSwapTokensAtAmount(uint256 newAmount)
        external
        onlyOwner
        returns (bool)
    {
        require(
            newAmount >= (totalSupply() * 1) / 100000,
            "Swap amount cannot be lower than 0.001% total supply."
        );
        require(
            newAmount <= (totalSupply() * 5) / 1000,
            "Swap amount cannot be higher than 0.5% total supply."
        );
        swapTokensAtAmount = newAmount;
        return true;
    }

    function updateMaxTxnAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 1) / 1000) / 1e18,
            "Cannot set maxTransactionAmount lower than 0.1%"
        );
        maxTransactionAmount = newNum * (10**18);
    }

    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 5) / 1000) / 1e18,
            "Cannot set maxWallet lower than 0.5%"
        );
        maxWallet = newNum * (10**18);
    }

    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
    ) external onlyOwner {
        buyMarketingFee = _marketingFee;
        require(buyMarketingFee.mul(100).div(divisor) <= 30, "Must keep fees at 30% or less");
    }

    function updateSellFees(
        uint256 _marketingFee
    ) external onlyOwner {
        sellMarketingFee = _marketingFee;
        require(sellMarketingFee.mul(100).div(divisor) <= 30, "Must keep fees at 30% or less");
    }

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

    function updateMarketingWallet(address newMarketingWallet)
        external
        onlyOwner
    {
        emit marketingWalletUpdated(newMarketingWallet, marketingWallet);
        marketingWallet = newMarketingWallet;
    }


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

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

        if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }

        if (limitsInEffect) {
            if (
                from != owner() &&
                to != owner() &&
                from != devWallet &&
                to != devWallet &&
                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.
                //when buy
                if (
                    from == uniswapV2Pair &&
                    !_isExcludedMaxTransactionAmount[to]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Buy transfer amount exceeds the maxTransactionAmount."
                    );
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
                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 &&
            to == uniswapV2Pair &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            swapping = true;

            swapBack(amount);

            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 (to == uniswapV2Pair && sellMarketingFee > 0) {
                fees = amount.mul(sellMarketingFee).div(divisor);
            }
            // on buy
            else if (from == uniswapV2Pair && buyMarketingFee > 0) {
                fees = amount.mul(buyMarketingFee).div(divisor);
            }

            if (fees > 0) {
                super._transfer(from, address(this), fees);
            }

            amount -= fees;
        }

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

    function min(uint256 a, uint256 b) private pure returns (uint256){
      return (a>b)?b:a;
    }

    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,
            marketingWallet,
            block.timestamp
        );
    }

    function swapBack(uint256 amount) private {
        uint256 contractBalance = balanceOf(address(this));
        if (contractBalance == 0) {
            return;
        }

        uint256 swapAmount = min(amount, min(contractBalance, swapTokensAtAmount * 40));

        swapTokensForETH(swapAmount);
    }

}

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":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"account","type":"address"}],"name":"balanceOf","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":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"divisor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"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":[{"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"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","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"},{"stateMutability":"payable","type":"receive"}]

60c0604052600b805462ffffff1916600117905534801561001e575f80fd5b506040518060400160405280600a8152602001692bb434ba32b830b832b960b11b81525060405180604001604052806002815260200161057560f41b815250816003908161006c919061062e565b506004610079828261062e565b50505061009261008d61034660201b60201c565b61034a565b737a250d5630b4cf539739df2c5dacb4c659f2488d6100b281600161039b565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa1580156100fa573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061011e91906106ed565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610169573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061018d91906106ed565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af11580156101d7573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906101fb91906106ed565b6001600160a01b031660a081905261021490600161039b565b5f8060646a52b7d2dcc80cd2e40000008161023082600261072e565b61023a919061074b565b600855606461024a82600261072e565b610254919061074b565b600a55620186a061026682601461072e565b610270919061074b565b600955600c849055600d839055600e829055600680546001600160a01b031990811673948666486114e047811d102360a06d8f96c3f40c17909155600780549091167344fd1fe1167ae0ed17824ee090eb8807a007c5b31790556102e66102df6005546001600160a01b031690565b6001610411565b6102f1306001610411565b6102fe61dead6001610411565b61031a6103136005546001600160a01b031690565b600161039b565b61032530600161039b565b61033261dead600161039b565b61033c33826104b6565b505050505061077d565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6005546001600160a01b031633146103e75760405162461bcd60e51b815260206004820181905260248201525f8051602061257a83398151915260448201526064015b60405180910390fd5b6001600160a01b03919091165f908152601060205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146104585760405162461bcd60e51b815260206004820181905260248201525f8051602061257a83398151915260448201526064016103de565b6001600160a01b0382165f818152600f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b03821661050c5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016103de565b8060025f82825461051d919061076a565b90915550506001600160a01b0382165f908152602081905260408120805483929061054990849061076a565b90915550506040518181526001600160a01b038316905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806105bf57607f821691505b6020821081036105dd57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111561059257805f5260205f20601f840160051c810160208510156106085750805b601f840160051c820191505b81811015610627575f8155600101610614565b5050505050565b81516001600160401b0381111561064757610647610597565b61065b8161065584546105ab565b846105e3565b602080601f83116001811461068e575f84156106775750858301515b5f19600386901b1c1916600185901b1785556106e5565b5f85815260208120601f198616915b828110156106bc5788860151825594840194600190910190840161069d565b50858210156106d957878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b5f602082840312156106fd575f80fd5b81516001600160a01b0381168114610713575f80fd5b9392505050565b634e487b7160e01b5f52601160045260245ffd5b80820281158282048414176107455761074561071a565b92915050565b5f8261076557634e487b7160e01b5f52601260045260245ffd5b500490565b808201808211156107455761074561071a565b60805160a051611dab6107cf5f395f818161039c0152818161121a015281816114260152818161152e015261159701525f81816102c30152818161189901528181611950015261198f0152611dab5ff3fe608060405260043610610220575f3560e01c80637bce5a041161011e578063bbc0c742116100a8578063dd62ed3e1161006d578063dd62ed3e14610661578063e2f45605146106a5578063eba4c333146106ba578063f2fde38b146106d9578063f8b45b05146106f8575f80fd5b8063bbc0c742146105d1578063c0246668146105ef578063c18bc1951461060e578063c8c8ebe41461062d578063d257b34f14610642575f80fd5b806392136913116100ee578063921369131461054b578063924de9b71461056057806395d89b411461057f578063a9059cbb14610593578063aacebbe3146105b2575f80fd5b80637bce5a04146104e65780638a8c523c146104fb5780638da5cb5b1461050f5780638ea5220f1461052c575f80fd5b806349bd5a5e116101aa578063715018a61161016f578063715018a61461046157806371fc468814610475578063751039fc146104945780637571336a146104a857806375f0a874146104c7575f80fd5b806349bd5a5e1461038b5780634a62bb65146103be5780634fbee193146103d75780636ddd17131461040e57806370a082311461042d575f80fd5b806318160ddd116101f057806318160ddd146102fd5780631f2dc5ef1461031b578063203e727e1461033057806323b872dd14610351578063313ce56714610370575f80fd5b806306fdde031461022b578063095ea7b31461025557806310d5de53146102845780631694505e146102b2575f80fd5b3661022757005b5f80fd5b348015610236575f80fd5b5061023f61070d565b60405161024c9190611a01565b60405180910390f35b348015610260575f80fd5b5061027461026f366004611a4a565b61079d565b604051901515815260200161024c565b34801561028f575f80fd5b5061027461029e366004611a74565b60106020525f908152604090205460ff1681565b3480156102bd575f80fd5b506102e57f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b03909116815260200161024c565b348015610308575f80fd5b506002545b60405190815260200161024c565b348015610326575f80fd5b5061030d600e5481565b34801561033b575f80fd5b5061034f61034a366004611a8f565b6107b3565b005b34801561035c575f80fd5b5061027461036b366004611aa6565b610899565b34801561037b575f80fd5b506040516012815260200161024c565b348015610396575f80fd5b506102e57f000000000000000000000000000000000000000000000000000000000000000081565b3480156103c9575f80fd5b50600b546102749060ff1681565b3480156103e2575f80fd5b506102746103f1366004611a74565b6001600160a01b03165f908152600f602052604090205460ff1690565b348015610419575f80fd5b50600b546102749062010000900460ff1681565b348015610438575f80fd5b5061030d610447366004611a74565b6001600160a01b03165f9081526020819052604090205490565b34801561046c575f80fd5b5061034f610941565b348015610480575f80fd5b5061034f61048f366004611a8f565b610976565b34801561049f575f80fd5b50610274610a11565b3480156104b3575f80fd5b5061034f6104c2366004611af3565b610a4d565b3480156104d2575f80fd5b506006546102e5906001600160a01b031681565b3480156104f1575f80fd5b5061030d600c5481565b348015610506575f80fd5b5061034f610aa1565b34801561051a575f80fd5b506005546001600160a01b03166102e5565b348015610537575f80fd5b506007546102e5906001600160a01b031681565b348015610556575f80fd5b5061030d600d5481565b34801561056b575f80fd5b5061034f61057a366004611b26565b610ade565b34801561058a575f80fd5b5061023f610b24565b34801561059e575f80fd5b506102746105ad366004611a4a565b610b33565b3480156105bd575f80fd5b5061034f6105cc366004611a74565b610b3f565b3480156105dc575f80fd5b50600b5461027490610100900460ff1681565b3480156105fa575f80fd5b5061034f610609366004611af3565b610bc5565b348015610619575f80fd5b5061034f610628366004611a8f565b610c4d565b348015610638575f80fd5b5061030d60085481565b34801561064d575f80fd5b5061027461065c366004611a8f565b610d1e565b34801561066c575f80fd5b5061030d61067b366004611b3f565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b3480156106b0575f80fd5b5061030d60095481565b3480156106c5575f80fd5b5061034f6106d4366004611a8f565b610e74565b3480156106e4575f80fd5b5061034f6106f3366004611a74565b610eb8565b348015610703575f80fd5b5061030d600a5481565b60606003805461071c90611b76565b80601f016020809104026020016040519081016040528092919081815260200182805461074890611b76565b80156107935780601f1061076a57610100808354040283529160200191610793565b820191905f5260205f20905b81548152906001019060200180831161077657829003601f168201915b5050505050905090565b5f6107a9338484610f50565b5060015b92915050565b6005546001600160a01b031633146107e65760405162461bcd60e51b81526004016107dd90611ba8565b60405180910390fd5b670de0b6b3a76400006103e86107fb60025490565b610806906001611bf1565b6108109190611c08565b61081a9190611c08565b8110156108815760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b60648201526084016107dd565b61089381670de0b6b3a7640000611bf1565b60085550565b5f6108a5848484611073565b6001600160a01b0384165f908152600160209081526040808320338452909152902054828110156109295760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084016107dd565b6109368533858403610f50565b506001949350505050565b6005546001600160a01b0316331461096b5760405162461bcd60e51b81526004016107dd90611ba8565b6109745f61162c565b565b6005546001600160a01b031633146109a05760405162461bcd60e51b81526004016107dd90611ba8565b600c819055600e54601e906109c0906109ba84606461167d565b9061168f565b1115610a0e5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420333025206f72206c65737300000060448201526064016107dd565b50565b6005545f906001600160a01b03163314610a3d5760405162461bcd60e51b81526004016107dd90611ba8565b50600b805460ff19169055600190565b6005546001600160a01b03163314610a775760405162461bcd60e51b81526004016107dd90611ba8565b6001600160a01b03919091165f908152601060205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610acb5760405162461bcd60e51b81526004016107dd90611ba8565b600b805462ffff00191662010100179055565b6005546001600160a01b03163314610b085760405162461bcd60e51b81526004016107dd90611ba8565b600b8054911515620100000262ff000019909216919091179055565b60606004805461071c90611b76565b5f6107a9338484611073565b6005546001600160a01b03163314610b695760405162461bcd60e51b81526004016107dd90611ba8565b6006546040516001600160a01b03918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b05674905f90a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610bef5760405162461bcd60e51b81526004016107dd90611ba8565b6001600160a01b0382165f818152600f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610c775760405162461bcd60e51b81526004016107dd90611ba8565b670de0b6b3a76400006103e8610c8c60025490565b610c97906005611bf1565b610ca19190611c08565b610cab9190611c08565b811015610d065760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b60648201526084016107dd565b610d1881670de0b6b3a7640000611bf1565b600a5550565b6005545f906001600160a01b03163314610d4a5760405162461bcd60e51b81526004016107dd90611ba8565b620186a0610d5760025490565b610d62906001611bf1565b610d6c9190611c08565b821015610dd95760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b60648201526084016107dd565b6103e8610de560025490565b610df0906005611bf1565b610dfa9190611c08565b821115610e665760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b60648201526084016107dd565b50600981905560015b919050565b6005546001600160a01b03163314610e9e5760405162461bcd60e51b81526004016107dd90611ba8565b600d819055600e54601e906109c0906109ba84606461167d565b6005546001600160a01b03163314610ee25760405162461bcd60e51b81526004016107dd90611ba8565b6001600160a01b038116610f475760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107dd565b610a0e8161162c565b6001600160a01b038316610fb25760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107dd565b6001600160a01b0382166110135760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107dd565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166110995760405162461bcd60e51b81526004016107dd90611c27565b6001600160a01b0382166110bf5760405162461bcd60e51b81526004016107dd90611c6c565b805f036110d6576110d183835f61169a565b505050565b600b5460ff16156113dc576005546001600160a01b0384811691161480159061110d57506005546001600160a01b03838116911614155b801561112757506007546001600160a01b03848116911614155b801561114157506007546001600160a01b03838116911614155b801561115557506001600160a01b03821615155b801561116c57506001600160a01b03821661dead14155b80156111825750600554600160a01b900460ff16155b156113dc57600b54610100900460ff16611218576001600160a01b0383165f908152600f602052604090205460ff16806111d357506001600160a01b0382165f908152600f602052604090205460ff165b6112185760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016107dd565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b031614801561127157506001600160a01b0382165f9081526010602052604090205460ff16155b15611354576008548111156112e65760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b60648201526084016107dd565b600a546001600160a01b0383165f9081526020819052604090205461130b9083611caf565b111561134f5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016107dd565b6113dc565b6001600160a01b0382165f9081526010602052604090205460ff166113dc57600a546001600160a01b0383165f908152602081905260409020546113989083611caf565b11156113dc5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016107dd565b305f90815260208190526040902054600954811080159081906114075750600b5462010000900460ff165b801561141d5750600554600160a01b900460ff16155b801561145a57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b0316145b801561147e57506001600160a01b0385165f908152600f602052604090205460ff16155b80156114a257506001600160a01b0384165f908152600f602052604090205460ff16155b156114d1576005805460ff60a01b1916600160a01b1790556114c3836117ed565b6005805460ff60a01b191690555b6005546001600160a01b0386165f908152600f602052604090205460ff600160a01b90920482161591168061151d57506001600160a01b0385165f908152600f602052604090205460ff165b1561152557505f5b5f8115611618577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316866001600160a01b031614801561156e57505f600d54115b156115955761158e600e546109ba600d548861167d90919063ffffffff16565b90506115fa565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316876001600160a01b03161480156115d757505f600c54115b156115fa576115f7600e546109ba600c548861167d90919063ffffffff16565b90505b801561160b5761160b87308361169a565b6116158186611cc2565b94505b61162387878761169a565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b5f6116888284611bf1565b9392505050565b5f6116888284611c08565b6001600160a01b0383166116c05760405162461bcd60e51b81526004016107dd90611c27565b6001600160a01b0382166116e65760405162461bcd60e51b81526004016107dd90611c6c565b6001600160a01b0383165f908152602081905260409020548181101561175d5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016107dd565b6001600160a01b038085165f90815260208190526040808220858503905591851681529081208054849290611793908490611caf565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516117df91815260200190565b60405180910390a350505050565b305f9081526020819052604081205490819003611808575050565b5f611825836118208460095460286118209190611bf1565b611830565b90506110d181611844565b5f81831161183e5782611688565b50919050565b6040805160028082526060820183525f9260208301908036833701905050905030815f8151811061187757611877611cd5565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156118f3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119179190611ce9565b8160018151811061192a5761192a611cd5565b60200260200101906001600160a01b031690816001600160a01b031681525050611975307f000000000000000000000000000000000000000000000000000000000000000084610f50565b60065460405163791ac94760e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000081169263791ac947926119d09287925f92889291909116904290600401611d04565b5f604051808303815f87803b1580156119e7575f80fd5b505af11580156119f9573d5f803e3d5ffd5b505050505050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b6001600160a01b0381168114610a0e575f80fd5b5f8060408385031215611a5b575f80fd5b8235611a6681611a36565b946020939093013593505050565b5f60208284031215611a84575f80fd5b813561168881611a36565b5f60208284031215611a9f575f80fd5b5035919050565b5f805f60608486031215611ab8575f80fd5b8335611ac381611a36565b92506020840135611ad381611a36565b929592945050506040919091013590565b80358015158114610e6f575f80fd5b5f8060408385031215611b04575f80fd5b8235611b0f81611a36565b9150611b1d60208401611ae4565b90509250929050565b5f60208284031215611b36575f80fd5b61168882611ae4565b5f8060408385031215611b50575f80fd5b8235611b5b81611a36565b91506020830135611b6b81611a36565b809150509250929050565b600181811c90821680611b8a57607f821691505b60208210810361183e57634e487b7160e01b5f52602260045260245ffd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b80820281158282048414176107ad576107ad611bdd565b5f82611c2257634e487b7160e01b5f52601260045260245ffd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b808201808211156107ad576107ad611bdd565b818103818111156107ad576107ad611bdd565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215611cf9575f80fd5b815161168881611a36565b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b81811015611d545784516001600160a01b031683529383019391830191600101611d2f565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212204f6100907458ca8dc37862ab70b93c8e24e20283b1e35d7f468ddb0e5f0d10ee64736f6c634300081900334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x608060405260043610610220575f3560e01c80637bce5a041161011e578063bbc0c742116100a8578063dd62ed3e1161006d578063dd62ed3e14610661578063e2f45605146106a5578063eba4c333146106ba578063f2fde38b146106d9578063f8b45b05146106f8575f80fd5b8063bbc0c742146105d1578063c0246668146105ef578063c18bc1951461060e578063c8c8ebe41461062d578063d257b34f14610642575f80fd5b806392136913116100ee578063921369131461054b578063924de9b71461056057806395d89b411461057f578063a9059cbb14610593578063aacebbe3146105b2575f80fd5b80637bce5a04146104e65780638a8c523c146104fb5780638da5cb5b1461050f5780638ea5220f1461052c575f80fd5b806349bd5a5e116101aa578063715018a61161016f578063715018a61461046157806371fc468814610475578063751039fc146104945780637571336a146104a857806375f0a874146104c7575f80fd5b806349bd5a5e1461038b5780634a62bb65146103be5780634fbee193146103d75780636ddd17131461040e57806370a082311461042d575f80fd5b806318160ddd116101f057806318160ddd146102fd5780631f2dc5ef1461031b578063203e727e1461033057806323b872dd14610351578063313ce56714610370575f80fd5b806306fdde031461022b578063095ea7b31461025557806310d5de53146102845780631694505e146102b2575f80fd5b3661022757005b5f80fd5b348015610236575f80fd5b5061023f61070d565b60405161024c9190611a01565b60405180910390f35b348015610260575f80fd5b5061027461026f366004611a4a565b61079d565b604051901515815260200161024c565b34801561028f575f80fd5b5061027461029e366004611a74565b60106020525f908152604090205460ff1681565b3480156102bd575f80fd5b506102e57f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b03909116815260200161024c565b348015610308575f80fd5b506002545b60405190815260200161024c565b348015610326575f80fd5b5061030d600e5481565b34801561033b575f80fd5b5061034f61034a366004611a8f565b6107b3565b005b34801561035c575f80fd5b5061027461036b366004611aa6565b610899565b34801561037b575f80fd5b506040516012815260200161024c565b348015610396575f80fd5b506102e57f000000000000000000000000774b23220813f80fac3d355cd03ad01634de997c81565b3480156103c9575f80fd5b50600b546102749060ff1681565b3480156103e2575f80fd5b506102746103f1366004611a74565b6001600160a01b03165f908152600f602052604090205460ff1690565b348015610419575f80fd5b50600b546102749062010000900460ff1681565b348015610438575f80fd5b5061030d610447366004611a74565b6001600160a01b03165f9081526020819052604090205490565b34801561046c575f80fd5b5061034f610941565b348015610480575f80fd5b5061034f61048f366004611a8f565b610976565b34801561049f575f80fd5b50610274610a11565b3480156104b3575f80fd5b5061034f6104c2366004611af3565b610a4d565b3480156104d2575f80fd5b506006546102e5906001600160a01b031681565b3480156104f1575f80fd5b5061030d600c5481565b348015610506575f80fd5b5061034f610aa1565b34801561051a575f80fd5b506005546001600160a01b03166102e5565b348015610537575f80fd5b506007546102e5906001600160a01b031681565b348015610556575f80fd5b5061030d600d5481565b34801561056b575f80fd5b5061034f61057a366004611b26565b610ade565b34801561058a575f80fd5b5061023f610b24565b34801561059e575f80fd5b506102746105ad366004611a4a565b610b33565b3480156105bd575f80fd5b5061034f6105cc366004611a74565b610b3f565b3480156105dc575f80fd5b50600b5461027490610100900460ff1681565b3480156105fa575f80fd5b5061034f610609366004611af3565b610bc5565b348015610619575f80fd5b5061034f610628366004611a8f565b610c4d565b348015610638575f80fd5b5061030d60085481565b34801561064d575f80fd5b5061027461065c366004611a8f565b610d1e565b34801561066c575f80fd5b5061030d61067b366004611b3f565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b3480156106b0575f80fd5b5061030d60095481565b3480156106c5575f80fd5b5061034f6106d4366004611a8f565b610e74565b3480156106e4575f80fd5b5061034f6106f3366004611a74565b610eb8565b348015610703575f80fd5b5061030d600a5481565b60606003805461071c90611b76565b80601f016020809104026020016040519081016040528092919081815260200182805461074890611b76565b80156107935780601f1061076a57610100808354040283529160200191610793565b820191905f5260205f20905b81548152906001019060200180831161077657829003601f168201915b5050505050905090565b5f6107a9338484610f50565b5060015b92915050565b6005546001600160a01b031633146107e65760405162461bcd60e51b81526004016107dd90611ba8565b60405180910390fd5b670de0b6b3a76400006103e86107fb60025490565b610806906001611bf1565b6108109190611c08565b61081a9190611c08565b8110156108815760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b60648201526084016107dd565b61089381670de0b6b3a7640000611bf1565b60085550565b5f6108a5848484611073565b6001600160a01b0384165f908152600160209081526040808320338452909152902054828110156109295760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084016107dd565b6109368533858403610f50565b506001949350505050565b6005546001600160a01b0316331461096b5760405162461bcd60e51b81526004016107dd90611ba8565b6109745f61162c565b565b6005546001600160a01b031633146109a05760405162461bcd60e51b81526004016107dd90611ba8565b600c819055600e54601e906109c0906109ba84606461167d565b9061168f565b1115610a0e5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420333025206f72206c65737300000060448201526064016107dd565b50565b6005545f906001600160a01b03163314610a3d5760405162461bcd60e51b81526004016107dd90611ba8565b50600b805460ff19169055600190565b6005546001600160a01b03163314610a775760405162461bcd60e51b81526004016107dd90611ba8565b6001600160a01b03919091165f908152601060205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610acb5760405162461bcd60e51b81526004016107dd90611ba8565b600b805462ffff00191662010100179055565b6005546001600160a01b03163314610b085760405162461bcd60e51b81526004016107dd90611ba8565b600b8054911515620100000262ff000019909216919091179055565b60606004805461071c90611b76565b5f6107a9338484611073565b6005546001600160a01b03163314610b695760405162461bcd60e51b81526004016107dd90611ba8565b6006546040516001600160a01b03918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b05674905f90a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610bef5760405162461bcd60e51b81526004016107dd90611ba8565b6001600160a01b0382165f818152600f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610c775760405162461bcd60e51b81526004016107dd90611ba8565b670de0b6b3a76400006103e8610c8c60025490565b610c97906005611bf1565b610ca19190611c08565b610cab9190611c08565b811015610d065760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b60648201526084016107dd565b610d1881670de0b6b3a7640000611bf1565b600a5550565b6005545f906001600160a01b03163314610d4a5760405162461bcd60e51b81526004016107dd90611ba8565b620186a0610d5760025490565b610d62906001611bf1565b610d6c9190611c08565b821015610dd95760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b60648201526084016107dd565b6103e8610de560025490565b610df0906005611bf1565b610dfa9190611c08565b821115610e665760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b60648201526084016107dd565b50600981905560015b919050565b6005546001600160a01b03163314610e9e5760405162461bcd60e51b81526004016107dd90611ba8565b600d819055600e54601e906109c0906109ba84606461167d565b6005546001600160a01b03163314610ee25760405162461bcd60e51b81526004016107dd90611ba8565b6001600160a01b038116610f475760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107dd565b610a0e8161162c565b6001600160a01b038316610fb25760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107dd565b6001600160a01b0382166110135760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107dd565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166110995760405162461bcd60e51b81526004016107dd90611c27565b6001600160a01b0382166110bf5760405162461bcd60e51b81526004016107dd90611c6c565b805f036110d6576110d183835f61169a565b505050565b600b5460ff16156113dc576005546001600160a01b0384811691161480159061110d57506005546001600160a01b03838116911614155b801561112757506007546001600160a01b03848116911614155b801561114157506007546001600160a01b03838116911614155b801561115557506001600160a01b03821615155b801561116c57506001600160a01b03821661dead14155b80156111825750600554600160a01b900460ff16155b156113dc57600b54610100900460ff16611218576001600160a01b0383165f908152600f602052604090205460ff16806111d357506001600160a01b0382165f908152600f602052604090205460ff165b6112185760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016107dd565b7f000000000000000000000000774b23220813f80fac3d355cd03ad01634de997c6001600160a01b0316836001600160a01b031614801561127157506001600160a01b0382165f9081526010602052604090205460ff16155b15611354576008548111156112e65760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b60648201526084016107dd565b600a546001600160a01b0383165f9081526020819052604090205461130b9083611caf565b111561134f5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016107dd565b6113dc565b6001600160a01b0382165f9081526010602052604090205460ff166113dc57600a546001600160a01b0383165f908152602081905260409020546113989083611caf565b11156113dc5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016107dd565b305f90815260208190526040902054600954811080159081906114075750600b5462010000900460ff165b801561141d5750600554600160a01b900460ff16155b801561145a57507f000000000000000000000000774b23220813f80fac3d355cd03ad01634de997c6001600160a01b0316846001600160a01b0316145b801561147e57506001600160a01b0385165f908152600f602052604090205460ff16155b80156114a257506001600160a01b0384165f908152600f602052604090205460ff16155b156114d1576005805460ff60a01b1916600160a01b1790556114c3836117ed565b6005805460ff60a01b191690555b6005546001600160a01b0386165f908152600f602052604090205460ff600160a01b90920482161591168061151d57506001600160a01b0385165f908152600f602052604090205460ff165b1561152557505f5b5f8115611618577f000000000000000000000000774b23220813f80fac3d355cd03ad01634de997c6001600160a01b0316866001600160a01b031614801561156e57505f600d54115b156115955761158e600e546109ba600d548861167d90919063ffffffff16565b90506115fa565b7f000000000000000000000000774b23220813f80fac3d355cd03ad01634de997c6001600160a01b0316876001600160a01b03161480156115d757505f600c54115b156115fa576115f7600e546109ba600c548861167d90919063ffffffff16565b90505b801561160b5761160b87308361169a565b6116158186611cc2565b94505b61162387878761169a565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b5f6116888284611bf1565b9392505050565b5f6116888284611c08565b6001600160a01b0383166116c05760405162461bcd60e51b81526004016107dd90611c27565b6001600160a01b0382166116e65760405162461bcd60e51b81526004016107dd90611c6c565b6001600160a01b0383165f908152602081905260409020548181101561175d5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016107dd565b6001600160a01b038085165f90815260208190526040808220858503905591851681529081208054849290611793908490611caf565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516117df91815260200190565b60405180910390a350505050565b305f9081526020819052604081205490819003611808575050565b5f611825836118208460095460286118209190611bf1565b611830565b90506110d181611844565b5f81831161183e5782611688565b50919050565b6040805160028082526060820183525f9260208301908036833701905050905030815f8151811061187757611877611cd5565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156118f3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119179190611ce9565b8160018151811061192a5761192a611cd5565b60200260200101906001600160a01b031690816001600160a01b031681525050611975307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610f50565b60065460405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81169263791ac947926119d09287925f92889291909116904290600401611d04565b5f604051808303815f87803b1580156119e7575f80fd5b505af11580156119f9573d5f803e3d5ffd5b505050505050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b6001600160a01b0381168114610a0e575f80fd5b5f8060408385031215611a5b575f80fd5b8235611a6681611a36565b946020939093013593505050565b5f60208284031215611a84575f80fd5b813561168881611a36565b5f60208284031215611a9f575f80fd5b5035919050565b5f805f60608486031215611ab8575f80fd5b8335611ac381611a36565b92506020840135611ad381611a36565b929592945050506040919091013590565b80358015158114610e6f575f80fd5b5f8060408385031215611b04575f80fd5b8235611b0f81611a36565b9150611b1d60208401611ae4565b90509250929050565b5f60208284031215611b36575f80fd5b61168882611ae4565b5f8060408385031215611b50575f80fd5b8235611b5b81611a36565b91506020830135611b6b81611a36565b809150509250929050565b600181811c90821680611b8a57607f821691505b60208210810361183e57634e487b7160e01b5f52602260045260245ffd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b80820281158282048414176107ad576107ad611bdd565b5f82611c2257634e487b7160e01b5f52601260045260245ffd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b808201808211156107ad576107ad611bdd565b818103818111156107ad576107ad611bdd565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215611cf9575f80fd5b815161168881611a36565b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b81811015611d545784516001600160a01b031683529383019391830191600101611d2f565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212204f6100907458ca8dc37862ab70b93c8e24e20283b1e35d7f468ddb0e5f0d10ee64736f6c63430008190033

Deployed Bytecode Sourcemap

30024:10023:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14827:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16994:169;;;;;;;;;;-1:-1:-1;16994:169:0;;;;;:::i;:::-;;:::i;:::-;;;1058:14:1;;1051:22;1033:41;;1021:2;1006:18;16994:169:0;893:187:1;30792:63:0;;;;;;;;;;-1:-1:-1;30792:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;30104:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1527:32:1;;;1509:51;;1497:2;1482:18;30104:51:0;1337:229:1;15947:108:0;;;;;;;;;;-1:-1:-1;16035:12:0;;15947:108;;;1717:25:1;;;1705:2;1690:18;15947:108:0;1571:177:1;30621:22:0;;;;;;;;;;;;;;;;33795:275;;;;;;;;;;-1:-1:-1;33795:275:0;;;;;:::i;:::-;;:::i;:::-;;17645:492;;;;;;;;;;-1:-1:-1;17645:492:0;;;;;:::i;:::-;;:::i;15789:93::-;;;;;;;;;;-1:-1:-1;15789:93:0;;15872:2;2541:36:1;;2529:2;2514:18;15789:93:0;2399:184:1;30162:38:0;;;;;;;;;;;;;;;30424:33;;;;;;;;;;-1:-1:-1;30424:33:0;;;;;;;;35617:126;;;;;;;;;;-1:-1:-1;35617:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;35707:28:0;35683:4;35707:28;;;:19;:28;;;;;;;;;35617:126;30504:31;;;;;;;;;;-1:-1:-1;30504:31:0;;;;;;;;;;;16118:127;;;;;;;;;;-1:-1:-1;16118:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;16219:18:0;16192:7;16219:18;;;;;;;;;;;;16118:127;8062:103;;;;;;;;;;;;;:::i;34713:227::-;;;;;;;;;;-1:-1:-1;34713:227:0;;;;;:::i;:::-;;:::i;33099:121::-;;;;;;;;;;;;;:::i;34342:167::-;;;;;;;;;;-1:-1:-1;34342:167:0;;;;;:::i;:::-;;:::i;30239:30::-;;;;;;;;;;-1:-1:-1;30239:30:0;;;;-1:-1:-1;;;;;30239:30:0;;;30544;;;;;;;;;;;;;;;;32935:112;;;;;;;;;;;;;:::i;7411:87::-;;;;;;;;;;-1:-1:-1;7484:6:0;;-1:-1:-1;;;;;7484:6:0;7411:87;;30276:24;;;;;;;;;;-1:-1:-1;30276:24:0;;;;-1:-1:-1;;;;;30276:24:0;;;30581:31;;;;;;;;;;;;;;;;34605:100;;;;;;;;;;-1:-1:-1;34605:100:0;;;;;:::i;:::-;;:::i;15046:104::-;;;;;;;;;;;;;:::i;16458:175::-;;;;;;;;;;-1:-1:-1;16458:175:0;;;;;:::i;:::-;;:::i;35376:231::-;;;;;;;;;;-1:-1:-1;35376:231:0;;;;;:::i;:::-;;:::i;30464:33::-;;;;;;;;;;-1:-1:-1;30464:33:0;;;;;;;;;;;35186:182;;;;;;;;;;-1:-1:-1;35186:182:0;;;;;:::i;:::-;;:::i;34078:256::-;;;;;;;;;;-1:-1:-1;34078:256:0;;;;;:::i;:::-;;:::i;30309:35::-;;;;;;;;;;;;;;;;33290:497;;;;;;;;;;-1:-1:-1;33290:497:0;;;;;:::i;:::-;;:::i;16696:151::-;;;;;;;;;;-1:-1:-1;16696:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;16812:18:0;;;16785:7;16812:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;16696:151;30351:33;;;;;;;;;;;;;;;;34948:230;;;;;;;;;;-1:-1:-1;34948:230:0;;;;;:::i;:::-;;:::i;8320:201::-;;;;;;;;;;-1:-1:-1;8320:201:0;;;;;:::i;:::-;;:::i;30391:24::-;;;;;;;;;;;;;;;;14827:100;14881:13;14914:5;14907:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14827:100;:::o;16994:169::-;17077:4;17094:39;6164:10;17117:7;17126:6;17094:8;:39::i;:::-;-1:-1:-1;17151:4:0;16994:169;;;;;:::o;33795:275::-;7484:6;;-1:-1:-1;;;;;7484:6:0;6164:10;7631:23;7623:68;;;;-1:-1:-1;;;7623:68:0;;;;;;;:::i;:::-;;;;;;;;;33932:4:::1;33924;33903:13;16035:12:::0;;;15947:108;33903:13:::1;:17;::::0;33919:1:::1;33903:17;:::i;:::-;33902:26;;;;:::i;:::-;33901:35;;;;:::i;:::-;33891:6;:45;;33869:142;;;::::0;-1:-1:-1;;;33869:142:0;;5334:2:1;33869:142:0::1;::::0;::::1;5316:21:1::0;5373:2;5353:18;;;5346:30;5412:34;5392:18;;;5385:62;-1:-1:-1;;;5463:18:1;;;5456:45;5518:19;;33869:142:0::1;5132:411:1::0;33869:142:0::1;34045:17;:6:::0;34055::::1;34045:17;:::i;:::-;34022:20;:40:::0;-1:-1:-1;33795:275:0:o;17645:492::-;17785:4;17802:36;17812:6;17820:9;17831:6;17802:9;:36::i;:::-;-1:-1:-1;;;;;17878:19:0;;17851:24;17878:19;;;:11;:19;;;;;;;;6164:10;17878:33;;;;;;;;17930:26;;;;17922:79;;;;-1:-1:-1;;;17922:79:0;;5750:2:1;17922:79:0;;;5732:21:1;5789:2;5769:18;;;5762:30;5828:34;5808:18;;;5801:62;-1:-1:-1;;;5879:18:1;;;5872:38;5927:19;;17922:79:0;5548:404:1;17922:79:0;18037:57;18046:6;6164:10;18087:6;18068:16;:25;18037:8;:57::i;:::-;-1:-1:-1;18125:4:0;;17645:492;-1:-1:-1;;;;17645:492:0:o;8062:103::-;7484:6;;-1:-1:-1;;;;;7484:6:0;6164:10;7631:23;7623:68;;;;-1:-1:-1;;;7623:68:0;;;;;;;:::i;:::-;8127:30:::1;8154:1;8127:18;:30::i;:::-;8062:103::o:0;34713:227::-;7484:6;;-1:-1:-1;;;;;7484:6:0;6164:10;7631:23;7623:68;;;;-1:-1:-1;;;7623:68:0;;;;;;;:::i;:::-;34805:15:::1;:31:::0;;;34884:7:::1;::::0;34896:2:::1;::::0;34855:37:::1;::::0;:24:::1;34823:13:::0;34875:3:::1;34855:19;:24::i;:::-;:28:::0;::::1;:37::i;:::-;:43;;34847:85;;;::::0;-1:-1:-1;;;34847:85:0;;6159:2:1;34847:85:0::1;::::0;::::1;6141:21:1::0;6198:2;6178:18;;;6171:30;6237:31;6217:18;;;6210:59;6286:18;;34847:85:0::1;5957:353:1::0;34847:85:0::1;34713:227:::0;:::o;33099:121::-;7484:6;;33151:4;;-1:-1:-1;;;;;7484:6:0;6164:10;7631:23;7623:68;;;;-1:-1:-1;;;7623:68:0;;;;;;;:::i;:::-;-1:-1:-1;33168:14:0::1;:22:::0;;-1:-1:-1;;33168:22:0::1;::::0;;;33099:121;:::o;34342:167::-;7484:6;;-1:-1:-1;;;;;7484:6:0;6164:10;7631:23;7623:68;;;;-1:-1:-1;;;7623:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;34455:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;34455:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;34342:167::o;32935:112::-;7484:6;;-1:-1:-1;;;;;7484:6:0;6164:10;7631:23;7623:68;;;;-1:-1:-1;;;7623:68:0;;;;;;;:::i;:::-;32990:13:::1;:20:::0;;-1:-1:-1;;33021:18:0;;;;;32935:112::o;34605:100::-;7484:6;;-1:-1:-1;;;;;7484:6:0;6164:10;7631:23;7623:68;;;;-1:-1:-1;;;7623:68:0;;;;;;;:::i;:::-;34676:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;34676:21:0;;::::1;::::0;;;::::1;::::0;;34605:100::o;15046:104::-;15102:13;15135:7;15128:14;;;;;:::i;16458:175::-;16544:4;16561:42;6164:10;16585:9;16596:6;16561:9;:42::i;35376:231::-;7484:6;;-1:-1:-1;;;;;7484:6:0;6164:10;7631:23;7623:68;;;;-1:-1:-1;;;7623:68:0;;;;;;;:::i;:::-;35536:15:::1;::::0;35493:59:::1;::::0;-1:-1:-1;;;;;35536:15:0;;::::1;::::0;35493:59;::::1;::::0;::::1;::::0;35536:15:::1;::::0;35493:59:::1;35563:15;:36:::0;;-1:-1:-1;;;;;;35563:36:0::1;-1:-1:-1::0;;;;;35563:36:0;;;::::1;::::0;;;::::1;::::0;;35376:231::o;35186:182::-;7484:6;;-1:-1:-1;;;;;7484:6:0;6164:10;7631:23;7623:68;;;;-1:-1:-1;;;7623:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;35271:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;35271:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;35326:34;;1033:41:1;;;35326:34:0::1;::::0;1006:18:1;35326:34:0::1;;;;;;;35186:182:::0;;:::o;34078:256::-;7484:6;;-1:-1:-1;;;;;7484:6:0;6164:10;7631:23;7623:68;;;;-1:-1:-1;;;7623:68:0;;;;;;;:::i;:::-;34218:4:::1;34210;34189:13;16035:12:::0;;;15947:108;34189:13:::1;:17;::::0;34205:1:::1;34189:17;:::i;:::-;34188:26;;;;:::i;:::-;34187:35;;;;:::i;:::-;34177:6;:45;;34155:131;;;::::0;-1:-1:-1;;;34155:131:0;;6517:2:1;34155:131:0::1;::::0;::::1;6499:21:1::0;6556:2;6536:18;;;6529:30;6595:34;6575:18;;;6568:62;-1:-1:-1;;;6646:18:1;;;6639:34;6690:19;;34155:131:0::1;6315:400:1::0;34155:131:0::1;34309:17;:6:::0;34319::::1;34309:17;:::i;:::-;34297:9;:29:::0;-1:-1:-1;34078:256:0:o;33290:497::-;7484:6;;33398:4;;-1:-1:-1;;;;;7484:6:0;6164:10;7631:23;7623:68;;;;-1:-1:-1;;;7623:68:0;;;;;;;:::i;:::-;33477:6:::1;33456:13;16035:12:::0;;;15947:108;33456:13:::1;:17;::::0;33472:1:::1;33456:17;:::i;:::-;33455:28;;;;:::i;:::-;33442:9;:41;;33420:144;;;::::0;-1:-1:-1;;;33420:144:0;;6922:2:1;33420:144:0::1;::::0;::::1;6904:21:1::0;6961:2;6941:18;;;6934:30;7000:34;6980:18;;;6973:62;-1:-1:-1;;;7051:18:1;;;7044:51;7112:19;;33420:144:0::1;6720:417:1::0;33420:144:0::1;33632:4;33611:13;16035:12:::0;;;15947:108;33611:13:::1;:17;::::0;33627:1:::1;33611:17;:::i;:::-;33610:26;;;;:::i;:::-;33597:9;:39;;33575:141;;;::::0;-1:-1:-1;;;33575:141:0;;7344:2:1;33575:141:0::1;::::0;::::1;7326:21:1::0;7383:2;7363:18;;;7356:30;7422:34;7402:18;;;7395:62;-1:-1:-1;;;7473:18:1;;;7466:50;7533:19;;33575:141:0::1;7142:416:1::0;33575:141:0::1;-1:-1:-1::0;33727:18:0::1;:30:::0;;;33775:4:::1;7702:1;33290:497:::0;;;:::o;34948:230::-;7484:6;;-1:-1:-1;;;;;7484:6:0;6164:10;7631:23;7623:68;;;;-1:-1:-1;;;7623:68:0;;;;;;;:::i;:::-;35041:16:::1;:32:::0;;;35122:7:::1;::::0;35134:2:::1;::::0;35092:38:::1;::::0;:25:::1;35060:13:::0;35113:3:::1;35092:20;:25::i;8320:201::-:0;7484:6;;-1:-1:-1;;;;;7484:6:0;6164:10;7631:23;7623:68;;;;-1:-1:-1;;;7623:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;8409:22:0;::::1;8401:73;;;::::0;-1:-1:-1;;;8401:73:0;;7765:2:1;8401:73:0::1;::::0;::::1;7747:21:1::0;7804:2;7784:18;;;7777:30;7843:34;7823:18;;;7816:62;-1:-1:-1;;;7894:18:1;;;7887:36;7940:19;;8401:73:0::1;7563:402:1::0;8401:73:0::1;8485:28;8504:8;8485:18;:28::i;20486:380::-:0;-1:-1:-1;;;;;20622:19:0;;20614:68;;;;-1:-1:-1;;;20614:68:0;;8172:2:1;20614:68:0;;;8154:21:1;8211:2;8191:18;;;8184:30;8250:34;8230:18;;;8223:62;-1:-1:-1;;;8301:18:1;;;8294:34;8345:19;;20614:68:0;7970:400:1;20614:68:0;-1:-1:-1;;;;;20701:21:0;;20693:68;;;;-1:-1:-1;;;20693:68:0;;8577:2:1;20693:68:0;;;8559:21:1;8616:2;8596:18;;;8589:30;8655:34;8635:18;;;8628:62;-1:-1:-1;;;8706:18:1;;;8699:32;8748:19;;20693:68:0;8375:398:1;20693:68:0;-1:-1:-1;;;;;20774:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;20826:32;;1717:25:1;;;20826:32:0;;1690:18:1;20826:32:0;;;;;;;20486:380;;;:::o;35751:3265::-;-1:-1:-1;;;;;35883:18:0;;35875:68;;;;-1:-1:-1;;;35875:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;35962:16:0;;35954:64;;;;-1:-1:-1;;;35954:64:0;;;;;;;:::i;:::-;36035:6;36045:1;36035:11;36031:93;;36063:28;36079:4;36085:2;36089:1;36063:15;:28::i;:::-;35751:3265;;;:::o;36031:93::-;36140:14;;;;36136:1504;;;7484:6;;-1:-1:-1;;;;;36193:15:0;;;7484:6;;36193:15;;;;:49;;-1:-1:-1;7484:6:0;;-1:-1:-1;;;;;36229:13:0;;;7484:6;;36229:13;;36193:49;:87;;;;-1:-1:-1;36271:9:0;;-1:-1:-1;;;;;36263:17:0;;;36271:9;;36263:17;;36193:87;:123;;;;-1:-1:-1;36307:9:0;;-1:-1:-1;;;;;36301:15:0;;;36307:9;;36301:15;;36193:123;:160;;;;-1:-1:-1;;;;;;36337:16:0;;;;36193:160;:202;;;;-1:-1:-1;;;;;;36374:21:0;;36388:6;36374:21;;36193:202;:232;;;;-1:-1:-1;36417:8:0;;-1:-1:-1;;;36417:8:0;;;;36416:9;36193:232;36171:1458;;;36465:13;;;;;;;36460:223;;-1:-1:-1;;;;;36537:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;36566:23:0;;;;;;:19;:23;;;;;;;;36537:52;36503:160;;;;-1:-1:-1;;;36503:160:0;;9790:2:1;36503:160:0;;;9772:21:1;9829:2;9809:18;;;9802:30;-1:-1:-1;;;9848:18:1;;;9841:52;9910:18;;36503:160:0;9588:346:1;36503:160:0;36897:13;-1:-1:-1;;;;;36889:21:0;:4;-1:-1:-1;;;;;36889:21:0;;:82;;;;-1:-1:-1;;;;;;36936:35:0;;;;;;:31;:35;;;;;;;;36935:36;36889:82;36863:751;;;37058:20;;37048:6;:30;;37014:169;;;;-1:-1:-1;;;37014:169:0;;10141:2:1;37014:169:0;;;10123:21:1;10180:2;10160:18;;;10153:30;10219:34;10199:18;;;10192:62;-1:-1:-1;;;10270:18:1;;;10263:51;10331:19;;37014:169:0;9939:417:1;37014:169:0;37266:9;;-1:-1:-1;;;;;16219:18:0;;16192:7;16219:18;;;;;;;;;;;37240:22;;:6;:22;:::i;:::-;:35;;37206:140;;;;-1:-1:-1;;;37206:140:0;;10693:2:1;37206:140:0;;;10675:21:1;10732:2;10712:18;;;10705:30;-1:-1:-1;;;10751:18:1;;;10744:49;10810:18;;37206:140:0;10491:343:1;37206:140:0;36863:751;;;-1:-1:-1;;;;;37394:35:0;;;;;;:31;:35;;;;;;;;37389:225;;37514:9;;-1:-1:-1;;;;;16219:18:0;;16192:7;16219:18;;;;;;;;;;;37488:22;;:6;:22;:::i;:::-;:35;;37454:140;;;;-1:-1:-1;;;37454:140:0;;10693:2:1;37454:140:0;;;10675:21:1;10732:2;10712:18;;;10705:30;-1:-1:-1;;;10751:18:1;;;10744:49;10810:18;;37454:140:0;10491:343:1;37454:140:0;37701:4;37652:28;16219:18;;;;;;;;;;;37759;;37735:42;;;;;;;37808:35;;-1:-1:-1;37832:11:0;;;;;;;37808:35;:61;;;;-1:-1:-1;37861:8:0;;-1:-1:-1;;;37861:8:0;;;;37860:9;37808:61;:97;;;;;37892:13;-1:-1:-1;;;;;37886:19:0;:2;-1:-1:-1;;;;;37886:19:0;;37808:97;:140;;;;-1:-1:-1;;;;;;37923:25:0;;;;;;:19;:25;;;;;;;;37922:26;37808:140;:181;;;;-1:-1:-1;;;;;;37966:23:0;;;;;;:19;:23;;;;;;;;37965:24;37808:181;37790:319;;;38016:8;:15;;-1:-1:-1;;;;38016:15:0;-1:-1:-1;;;38016:15:0;;;38048:16;38057:6;38048:8;:16::i;:::-;38081:8;:16;;-1:-1:-1;;;;38081:16:0;;;37790:319;38137:8;;-1:-1:-1;;;;;38247:25:0;;38121:12;38247:25;;;:19;:25;;;;;;38137:8;-1:-1:-1;;;38137:8:0;;;;;38136:9;;38247:25;;:52;;-1:-1:-1;;;;;;38276:23:0;;;;;;:19;:23;;;;;;;;38247:52;38243:100;;;-1:-1:-1;38326:5:0;38243:100;38355:12;38460:7;38456:507;;;38518:13;-1:-1:-1;;;;;38512:19:0;:2;-1:-1:-1;;;;;38512:19:0;;:43;;;;;38554:1;38535:16;;:20;38512:43;38508:306;;;38583:41;38616:7;;38583:28;38594:16;;38583:6;:10;;:28;;;;:::i;:41::-;38576:48;;38508:306;;;38694:13;-1:-1:-1;;;;;38686:21:0;:4;-1:-1:-1;;;;;38686:21:0;;:44;;;;;38729:1;38711:15;;:19;38686:44;38682:132;;;38758:40;38790:7;;38758:27;38769:15;;38758:6;:10;;:27;;;;:::i;:40::-;38751:47;;38682:132;38834:8;;38830:91;;38863:42;38879:4;38893;38900;38863:15;:42::i;:::-;38937:14;38947:4;38937:14;;:::i;:::-;;;38456:507;38975:33;38991:4;38997:2;39001:6;38975:15;:33::i;:::-;35864:3152;;;;35751:3265;;;:::o;8681:191::-;8774:6;;;-1:-1:-1;;;;;8791:17:0;;;-1:-1:-1;;;;;;8791:17:0;;;;;;;8824:40;;8774:6;;;8791:17;8774:6;;8824:40;;8755:16;;8824:40;8744:128;8681:191;:::o;25939:98::-;25997:7;26024:5;26028:1;26024;:5;:::i;:::-;26017:12;25939:98;-1:-1:-1;;;25939:98:0:o;26338:::-;26396:7;26423:5;26427:1;26423;:5;:::i;18627:733::-;-1:-1:-1;;;;;18767:20:0;;18759:70;;;;-1:-1:-1;;;18759:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;18848:23:0;;18840:71;;;;-1:-1:-1;;;18840:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;19008:17:0;;18984:21;19008:17;;;;;;;;;;;19044:23;;;;19036:74;;;;-1:-1:-1;;;19036:74:0;;11174:2:1;19036:74:0;;;11156:21:1;11213:2;11193:18;;;11186:30;11252:34;11232:18;;;11225:62;-1:-1:-1;;;11303:18:1;;;11296:36;11349:19;;19036:74:0;10972:402:1;19036:74:0;-1:-1:-1;;;;;19146:17:0;;;:9;:17;;;;;;;;;;;19166:22;;;19146:42;;19210:20;;;;;;;;:30;;19182:6;;19146:9;19210:30;;19182:6;;19210:30;:::i;:::-;;;;;;;;19275:9;-1:-1:-1;;;;;19258:35:0;19267:6;-1:-1:-1;;;;;19258:35:0;;19286:6;19258:35;;;;1717:25:1;;1705:2;1690:18;;1571:177;19258:35:0;;;;;;;;18748:612;18627:733;;;:::o;39729:313::-;39826:4;39782:23;16219:18;;;;;;;;;;;;39847:20;;;39843:59;;39884:7;39729:313;:::o;39843:59::-;39914:18;39935:58;39939:6;39947:45;39951:15;39968:18;;39989:2;39968:23;;;;:::i;:::-;39947:3;:45::i;39935:58::-;39914:79;;40006:28;40023:10;40006:16;:28::i;39024:98::-;39081:7;39108:1;39106;:3;39105:9;;39113:1;39105:9;;;-1:-1:-1;39111:1:0;39024:98;-1:-1:-1;39024:98:0:o;39130:591::-;39280:16;;;39294:1;39280:16;;;;;;;;39256:21;;39280:16;;;;;;;;;;-1:-1:-1;39280:16:0;39256:40;;39325:4;39307;39312:1;39307:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;39307:23:0;;;-1:-1:-1;;;;;39307:23:0;;;;;39351:15;-1:-1:-1;;;;;39351:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;39341:4;39346:1;39341:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;39341:32:0;;;-1:-1:-1;;;;;39341:32:0;;;;;39386:62;39403:4;39418:15;39436:11;39386:8;:62::i;:::-;39657:15;;39487:226;;-1:-1:-1;;;39487:226:0;;-1:-1:-1;;;;;39487:15:0;:66;;;;;:226;;39568:11;;39594:1;;39638:4;;39657:15;;;;;39687;;39487:226;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39185:536;39130:591;:::o;14:418:1:-;163:2;152:9;145:21;126:4;195:6;189:13;238:6;233:2;222:9;218:18;211:34;297:6;292:2;284:6;280:15;275:2;264:9;260:18;254:50;353:1;348:2;339:6;328:9;324:22;320:31;313:42;423:2;416;412:7;407:2;399:6;395:15;391:29;380:9;376:45;372:54;364:62;;;14:418;;;;:::o;437:131::-;-1:-1:-1;;;;;512:31:1;;502:42;;492:70;;558:1;555;548:12;573:315;641:6;649;702:2;690:9;681:7;677:23;673:32;670:52;;;718:1;715;708:12;670:52;757:9;744:23;776:31;801:5;776:31;:::i;:::-;826:5;878:2;863:18;;;;850:32;;-1:-1:-1;;;573:315:1:o;1085:247::-;1144:6;1197:2;1185:9;1176:7;1172:23;1168:32;1165:52;;;1213:1;1210;1203:12;1165:52;1252:9;1239:23;1271:31;1296:5;1271:31;:::i;1753:180::-;1812:6;1865:2;1853:9;1844:7;1840:23;1836:32;1833:52;;;1881:1;1878;1871:12;1833:52;-1:-1:-1;1904:23:1;;1753:180;-1:-1:-1;1753:180:1:o;1938:456::-;2015:6;2023;2031;2084:2;2072:9;2063:7;2059:23;2055:32;2052:52;;;2100:1;2097;2090:12;2052:52;2139:9;2126:23;2158:31;2183:5;2158:31;:::i;:::-;2208:5;-1:-1:-1;2265:2:1;2250:18;;2237:32;2278:33;2237:32;2278:33;:::i;:::-;1938:456;;2330:7;;-1:-1:-1;;;2384:2:1;2369:18;;;;2356:32;;1938:456::o;2796:160::-;2861:20;;2917:13;;2910:21;2900:32;;2890:60;;2946:1;2943;2936:12;2961:315;3026:6;3034;3087:2;3075:9;3066:7;3062:23;3058:32;3055:52;;;3103:1;3100;3093:12;3055:52;3142:9;3129:23;3161:31;3186:5;3161:31;:::i;:::-;3211:5;-1:-1:-1;3235:35:1;3266:2;3251:18;;3235:35;:::i;:::-;3225:45;;2961:315;;;;;:::o;3281:180::-;3337:6;3390:2;3378:9;3369:7;3365:23;3361:32;3358:52;;;3406:1;3403;3396:12;3358:52;3429:26;3445:9;3429:26;:::i;3466:388::-;3534:6;3542;3595:2;3583:9;3574:7;3570:23;3566:32;3563:52;;;3611:1;3608;3601:12;3563:52;3650:9;3637:23;3669:31;3694:5;3669:31;:::i;:::-;3719:5;-1:-1:-1;3776:2:1;3761:18;;3748:32;3789:33;3748:32;3789:33;:::i;:::-;3841:7;3831:17;;;3466:388;;;;;:::o;3859:380::-;3938:1;3934:12;;;;3981;;;4002:61;;4056:4;4048:6;4044:17;4034:27;;4002:61;4109:2;4101:6;4098:14;4078:18;4075:38;4072:161;;4155:10;4150:3;4146:20;4143:1;4136:31;4190:4;4187:1;4180:15;4218:4;4215:1;4208:15;4244:356;4446:2;4428:21;;;4465:18;;;4458:30;4524:34;4519:2;4504:18;;4497:62;4591:2;4576:18;;4244:356::o;4605:127::-;4666:10;4661:3;4657:20;4654:1;4647:31;4697:4;4694:1;4687:15;4721:4;4718:1;4711:15;4737:168;4810:9;;;4841;;4858:15;;;4852:22;;4838:37;4828:71;;4879:18;;:::i;4910:217::-;4950:1;4976;4966:132;;5020:10;5015:3;5011:20;5008:1;5001:31;5055:4;5052:1;5045:15;5083:4;5080:1;5073:15;4966:132;-1:-1:-1;5112:9:1;;4910:217::o;8778:401::-;8980:2;8962:21;;;9019:2;8999:18;;;8992:30;9058:34;9053:2;9038:18;;9031:62;-1:-1:-1;;;9124:2:1;9109:18;;9102:35;9169:3;9154:19;;8778:401::o;9184:399::-;9386:2;9368:21;;;9425:2;9405:18;;;9398:30;9464:34;9459:2;9444:18;;9437:62;-1:-1:-1;;;9530:2:1;9515:18;;9508:33;9573:3;9558:19;;9184:399::o;10361:125::-;10426:9;;;10447:10;;;10444:36;;;10460:18;;:::i;10839:128::-;10906:9;;;10927:11;;;10924:37;;;10941:18;;:::i;11511:127::-;11572:10;11567:3;11563:20;11560:1;11553:31;11603:4;11600:1;11593:15;11627:4;11624:1;11617:15;11643:251;11713:6;11766:2;11754:9;11745:7;11741:23;11737:32;11734:52;;;11782:1;11779;11772:12;11734:52;11814:9;11808:16;11833:31;11858:5;11833:31;:::i;11899:980::-;12161:4;12209:3;12198:9;12194:19;12240:6;12229:9;12222:25;12266:2;12304:6;12299:2;12288:9;12284:18;12277:34;12347:3;12342:2;12331:9;12327:18;12320:31;12371:6;12406;12400:13;12437:6;12429;12422:22;12475:3;12464:9;12460:19;12453:26;;12514:2;12506:6;12502:15;12488:29;;12535:1;12545:195;12559:6;12556:1;12553:13;12545:195;;;12624:13;;-1:-1:-1;;;;;12620:39:1;12608:52;;12715:15;;;;12680:12;;;;12656:1;12574:9;12545:195;;;-1:-1:-1;;;;;;;12796:32:1;;;;12791:2;12776:18;;12769:60;-1:-1:-1;;;12860:3:1;12845:19;12838:35;12757:3;11899:980;-1:-1:-1;;;11899:980:1:o

Swarm Source

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