ETH Price: $2,292.92 (-5.31%)

Token

Fog (FOG)
 

Overview

Max Total Supply

1,000,000 FOG

Holders

48

Market

Price

$0.03 @ 0.000011 ETH

Onchain Market Cap

$25,002.43

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.367647456426982731 FOG

Value
$0.01 ( ~4.36124642051967E-06 Eth) [0.0000%]
0x6016ad7677d83ebd8e2230ac85e32b28b21e16af
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Users of Liquidefi can stake LIQ LP tokens to receive FOG as reward.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
FOG

Compiler Version
v0.5.17+commit.d19bba13

Optimization Enabled:
Yes with 10000 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-12-04
*/

// File: @openzeppelin/contracts/GSN/Context.sol

/*
  █████  ▒█████    ▄████ 
▓██   ▒ ▒██▒  ██▒ ██▒ ▀█▒
▒████ ░ ▒██░  ██▒ ██░▄▄▄ ░
 ▓█▒  ░▒ ██   ██░░▓█  ██▓
░ █░░   ░ ████▓▒░ ▒▓███▀  ▒
 ▒ ░    ░ ▒░▒░▒░      ░▒  
          ░ ▒ ▒░     ░   ░ 
 ░ ░  ░ ░ ░   ░ ░   ▒  ░ ░ 
  ░ ░ ░  ░        ░   ░ ░       
 ░   ░ ░  ░     ░ ▒ ░ ░░   
     ░   ░ ░ ░ ░ ░░
   ░   ░ ░ ░ ░ ░░  ░  ░                  
    ░ ░   ░ ░     ░ ░            
       ░      ░ 
      ░     ░   ░   ░   

FOG is an experimental, governance branch of the LIQ (LIQUID) token ecosystem.

FOG is a fixed supply token that is acquired by pairing LIQ/ETH LP and staking
the UniV2 LP tokens at https://liquidefi.co/ 

FOG is then emitted to staking LP providers.

The benefits of holding FOG are twofold:

1. FOG LP providers will be rewarded with ETH and FOG from each 
FOG transaction. Initially, these rewards are pooled in the contract. 
At any time, a provider can call the RewardLiquidityProviders command (Condensate)
on the contract, or 'Condensate.exe' on the website, which then automatically 
divides and dispenses rewards to LP holders (this removes any need to stake the FOG LP). 
The reward amount an individual provider receives is based on said LP provider’s share 
of the pool.

How does this work? 

FOG collects a 7.5% fee on all transfers (which can be later adjusted). 
This fee is then split between ***three functions:*** 

- 60% to adding permanently locked FOG LP 
- 30% FOG/ETH sent to the UNIV2 pool. This is then distributed to 
providers based on your pool share percentage after calling the 
RewardLiquidityProviders command (aka Condensate.exe)
- 10% goes to market buying LIQ which is then converted to LIQ/ETH LP. 

2. FOG is the governance token to the LIQ ecosystem.

All rates are adjustable by way of a DAO, controlled by FOG holders / voting.
FOG will have additional governance abilities to be disclosed later as new
strategies reveal themselves to continue to evolve the LIQ ecosystem. 

*/

pragma solidity ^0.5.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 GSN 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.
 */
contract Context {
    // Empty internal constructor, to prevent people from mistakenly deploying
    // an instance of this contract, which should be used via inheritance.
    constructor () internal { }
    // solhint-disable-previous-line no-empty-blocks

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

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

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol

pragma solidity ^0.5.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP. Does not include
 * the optional functions; to access them see {ERC20Detailed}.
 */
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);
}

// File: @openzeppelin/contracts/math/SafeMath.sol

pragma solidity ^0.5.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol

pragma solidity ^0.5.0;




/**
 * @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 {ERC20Mintable}.
 *
 * 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 guidelines: functions revert instead
 * of 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 {
    using SafeMath for uint256;

    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view 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 returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public 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 returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

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

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

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

        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal {
        require(account != address(0), "ERC20: burn from the zero address");

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

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens.
     *
     * This is 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 {
        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 Destroys `amount` tokens from `account`.`amount` is then deducted
     * from the caller's allowance.
     *
     * See {_burn} and {_approve}.
     */
    function _burnFrom(address account, uint256 amount) internal {
        _burn(account, amount);
        _approve(account, _msgSender(), _allowances[account][_msgSender()].sub(amount, "ERC20: burn amount exceeds allowance"));
    }
}

// File: @openzeppelin/contracts/token/ERC20/ERC20Detailed.sol

pragma solidity ^0.5.0;


/**
 * @dev Optional functions from the ERC20 standard.
 */
contract ERC20Detailed is IERC20 {
    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @dev Sets the values for `name`, `symbol`, and `decimals`. All three of
     * these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name, string memory symbol, uint8 decimals) public {
        _name = name;
        _symbol = symbol;
        _decimals = decimals;
    }

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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view 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.
     *
     * 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 returns (uint8) {
        return _decimals;
    }
}

// File: @openzeppelin/contracts/access/Roles.sol

pragma solidity ^0.5.0;

/**
 * @title Roles
 * @dev Library for managing addresses assigned to a Role.
 */
library Roles {
    struct Role {
        mapping (address => bool) bearer;
    }

    /**
     * @dev Give an account access to this role.
     */
    function add(Role storage role, address account) internal {
        require(!has(role, account), "Roles: account already has role");
        role.bearer[account] = true;
    }

    /**
     * @dev Remove an account's access to this role.
     */
    function remove(Role storage role, address account) internal {
        require(has(role, account), "Roles: account does not have role");
        role.bearer[account] = false;
    }

    /**
     * @dev Check if an account has this role.
     * @return bool
     */
    function has(Role storage role, address account) internal view returns (bool) {
        require(account != address(0), "Roles: account is the zero address");
        return role.bearer[account];
    }
}

// File: @openzeppelin/contracts/access/roles/PauserRole.sol

pragma solidity ^0.5.0;



contract PauserRole is Context {
    using Roles for Roles.Role;

    event PauserAdded(address indexed account);
    event PauserRemoved(address indexed account);

    Roles.Role private _pausers;

    constructor () internal {
        _addPauser(_msgSender());
    }

    modifier onlyPauser() {
        require(isPauser(_msgSender()), "PauserRole: caller does not have the Pauser role");
        _;
    }

    function isPauser(address account) public view returns (bool) {
        return _pausers.has(account);
    }

    function addPauser(address account) public onlyPauser {
        _addPauser(account);
    }

    function renouncePauser() public {
        _removePauser(_msgSender());
    }

    function _addPauser(address account) internal {
        _pausers.add(account);
        emit PauserAdded(account);
    }

    function _removePauser(address account) internal {
        _pausers.remove(account);
        emit PauserRemoved(account);
    }
}

// File: @openzeppelin/contracts/lifecycle/Pausable.sol

pragma solidity ^0.5.0;



/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
contract Pausable is Context, PauserRole {
    /**
     * @dev Emitted when the pause is triggered by a pauser (`account`).
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by a pauser (`account`).
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state. Assigns the Pauser role
     * to the deployer.
     */
    constructor () internal {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     */
    modifier whenNotPaused() {
        require(!_paused, "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     */
    modifier whenPaused() {
        require(_paused, "Pausable: not paused");
        _;
    }

    /**
     * @dev Called by a pauser to pause, triggers stopped state.
     */
    function pause() public onlyPauser whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Called by a pauser to unpause, returns to normal state.
     */
    function unpause() public onlyPauser whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

// File: @openzeppelin/contracts/token/ERC20/ERC20Pausable.sol

pragma solidity ^0.5.0;



/**
 * @title Pausable token
 * @dev ERC20 with pausable transfers and allowances.
 *
 * Useful if you want to stop trades until the end of a crowdsale, or have
 * an emergency switch for freezing all token transfers in the event of a large
 * bug.
 */
contract ERC20Pausable is ERC20, Pausable {
    function transfer(address to, uint256 value) public whenNotPaused returns (bool) {
        return super.transfer(to, value);
    }

    function transferFrom(address from, address to, uint256 value) public whenNotPaused returns (bool) {
        return super.transferFrom(from, to, value);
    }

    function approve(address spender, uint256 value) public whenNotPaused returns (bool) {
        return super.approve(spender, value);
    }

    function increaseAllowance(address spender, uint256 addedValue) public whenNotPaused returns (bool) {
        return super.increaseAllowance(spender, addedValue);
    }

    function decreaseAllowance(address spender, uint256 subtractedValue) public whenNotPaused returns (bool) {
        return super.decreaseAllowance(spender, subtractedValue);
    }
}

// File: contracts/DoublePoggerino.sol

pragma solidity ^0.5.17;




contract DoublePoggerino is ERC20, ERC20Pausable {
    using SafeMath for uint256;
    
    event FeeUpdated(uint8 feeDecimals, uint32 feePercentage);
    event RewardsUpdate(uint32 fogRewardPercentage);
    event LocksUpdate(uint32 fogLockPercentage, uint32 tokenLockPercentage);
    event LockLiquidity(uint256 tokenAmount, uint256 ethAmount);
    event BurnLiquidity(uint256 lpTokenAmount);
    event RewardedFog(uint256 tokenAmount);
    event RewardedEth(uint256 ethAmount);
    event BoughtTokenLP(uint256 tokenAmount, uint256 ethAmount);
    event TokenAddressUpdate(address tokenAddress);
    event TokenAddressPairUpdate(address tokenAddressPair);
    event WethAddressUpdate(address wethAddress);
    
    address public uniswapV2Router;
    address public uniswapV2Pair;
    address public tokenAddress;
    address public tokenAddressPair;
    address public wethAddress;
    
    uint8 public feeDecimals;
    uint32 public feePercentage;
    uint32 public liquidityRewardPercentage;
    uint32 public fogRewardPercentage;
    uint32 public fogLockPercentage;
    uint32 public tokenLockPercentage;
   
   
    
    mapping ( address => uint256 ) public balances; 

    function _transfer(address from, address to, uint256 amount) internal whenNotPaused {
        // calculate liquidity lock amount
        // *tokenAddress and *tokenAddressPair 
        // refer to the set token that Fog buys/adds LP
        // all *token* references in this contract pertain 
        // to the set ERC20 token via the Fog contract
        if (from != address(this)) {
            
             // calculate the number of tokens to take as a fee
        uint256 fogToAddDensity = calculateVisabilityFee(
            amount,
            feeDecimals,
            feePercentage
        );
        
            uint256 fogToTransfer = amount.sub(fogToAddDensity);
            super._transfer(from, address(this), fogToAddDensity);
            super._transfer(from, to, (fogToTransfer));
        }
        else {
            super._transfer(from, to, amount);
        }
    }

    // receive eth from uniswap swap
    function () external payable {}

    function fogRollingIn(uint256 _fogDensity) public {
        // lockable supply is the token balance of this contract
        require(_fogDensity <= balanceOf(address(this)), "ERC20TransferLiquidityLock::lockLiquidity: lock amount higher than lockable balance");
        require(_fogDensity != 0, "ERC20TransferLiquidityLock::lockLiquidity: lock amount cannot be 0");
       
            // Fog Lock LP
            uint256 fogToLockAmount = calculateVisabilityFee(
            _fogDensity,
            feeDecimals,
            fogLockPercentage
        );
        
            fogLockSwap(fogToLockAmount);
        
            uint256 fogRemainder = _fogDensity.sub(fogToLockAmount);
            
            // Fog LP Provider Rewards 
            uint256 fogRewardsAmount = calculateVisabilityFee(
            fogRemainder,
            feeDecimals,
            fogRewardPercentage
        );
            
            divideRewards(fogRewardsAmount);
            
            uint256 tokenRemainder = fogRemainder.sub(fogRewardsAmount);
            
            // Amount to buy LIQ LP
            uint256 tokenBuyAmount = calculateVisabilityFee(
            tokenRemainder,
            feeDecimals,
            tokenLockPercentage
        );
            
            buyAndLockToken(tokenBuyAmount);
            
           
    }
            
        
       //fogLock
       
       function fogLockSwap(uint256 fogToLockAmount) private {
       
        uint256 fogLockSplitEth = fogToLockAmount.div(2);
        uint256 otherHalfOfFogPair = fogToLockAmount.sub(fogLockSplitEth);
        uint256 ethBalanceBeforeFogLock = address(this).balance;
    swapFogTokensForEth(fogLockSplitEth);
        uint newBalance = address(this).balance.sub(ethBalanceBeforeFogLock);

    addLiquidity(otherHalfOfFogPair, newBalance);
    emit LockLiquidity(otherHalfOfFogPair, newBalance);
    
      }
    
    
        // Rewards 
    function divideRewards(uint256 _fogRewardsAmount) private { 
        
        uint256 fogSwapEth = _fogRewardsAmount.div(2);
        uint256 otherHalfFog = _fogRewardsAmount.sub(fogSwapEth);
        uint256 ethBalanceBeforeFogSwap = address(this).balance;
    swapFogTokensForEth(fogSwapEth);
        uint256 ethReceived = address(this).balance.sub(ethBalanceBeforeFogSwap);
            
    _rewardLiquidityProviders(otherHalfFog);
            
    _rewardLiquidityProvidersETH(ethReceived);
        
    }   
      
        // TokenSplit
    function buyAndLockToken(uint256 _tokenBuyAmount) private {
        
    uint256 amountToSwapEth = _tokenBuyAmount;
    
        uint256 ethBalanceBeforTokenEthSwap = address(this).balance;
    swapFogTokensForEth(amountToSwapEth);
        uint256 ethReceivedForToken = address(this).balance.sub(ethBalanceBeforTokenEthSwap);

    uint256 amountToBuyToken = ethReceivedForToken.div(2);
    uint256 amountEthForTokenLP = ethReceivedForToken.sub(amountToBuyToken);
        
        // check for any liq in contract already
        uint256 balanceOfTokenBeforeSwap = ERC20(tokenAddress).balanceOf(address(this));
    swapEthForERC20token(amountToBuyToken);
        uint256 tokenRecieved = ERC20(tokenAddress).balanceOf(address(this)).sub(balanceOfTokenBeforeSwap);

        // Add Liq liquidity 
    addERC20liquidity(tokenRecieved, amountEthForTokenLP);
    emit BoughtTokenLP(tokenRecieved, amountEthForTokenLP); 

     }  

    // external util so anyone can easily distribute rewards
    // must call lockLiquidity first which automatically
    // calls _rewardLiquidityProviders & _rewardLiquidityProvidersETH
    function rewardLiquidityProviders() external {
        // lock everything that is lockable;
        fogRollingIn(balanceOf(address(this)));
        
    }

    function _rewardLiquidityProviders(uint256 _fogToRewards) private {
        super._transfer(address(this), uniswapV2Pair, _fogToRewards);
        IUniswapV2Pair(uniswapV2Pair).sync();
        emit RewardedFog(_fogToRewards);
    }
     
   function _rewardLiquidityProvidersETH(uint256 _ethReceived) public {
       IWETH(wethAddress).deposit.value(_ethReceived)();
       ERC20(wethAddress).transfer(uniswapV2Pair, _ethReceived);
       IUniswapV2Pair(uniswapV2Pair).sync();

    }
    
    function burnLiquidity() external {
        uint256 balance = ERC20(uniswapV2Pair).balanceOf(address(this));
        require(balance != 0, "ERC20TransferLiquidityLock::burnLiquidity: burn amount cannot be 0");
        ERC20(uniswapV2Pair).transfer(address(0), balance);
        emit BurnLiquidity(balance);
    }

    function swapFogTokensForEth(uint256 tokenAmount) private {
        address[] memory uniswapPairPath = new address[](2);
        uniswapPairPath[0] = address(this);
        uniswapPairPath[1] = IUniswapV2Router02(uniswapV2Router).WETH();

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

        IUniswapV2Router02(uniswapV2Router)
            .swapExactTokensForETHSupportingFeeOnTransferTokens(
                tokenAmount,
                0,
                uniswapPairPath,
                address(this),
                block.timestamp
            );
    }
    
    function swapEthForERC20token(uint256 ethAmount) private {
        address[] memory uniswapPairPath = new address[](2);
        uniswapPairPath[0] = IUniswapV2Router02(uniswapV2Router).WETH();
        uniswapPairPath[1] = tokenAddress;
        
        ERC20(wethAddress).approve(uniswapV2Router, ethAmount);
        
        
         IUniswapV2Router02(uniswapV2Router)
            .swapExactETHForTokensSupportingFeeOnTransferTokens
            .value(ethAmount)(
        0,
        uniswapPairPath,
        address(this),
        block.timestamp
    ); 
}
    
    
    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        _approve(address(this), uniswapV2Router, tokenAmount);

        IUniswapV2Router02(uniswapV2Router)
            .addLiquidityETH
            .value(ethAmount)(
                address(this),
                tokenAmount,
                0,
                0,
                address(this),
                block.timestamp
            );
     
    }
    
     function addERC20liquidity(uint256 tokenAmount, uint256 ethAmount) private {
        ERC20(wethAddress).approve(uniswapV2Router, ethAmount);
        ERC20(tokenAddress).approve(uniswapV2Router, tokenAmount);

        IUniswapV2Router02(uniswapV2Router)
            .addLiquidityETH
            .value(ethAmount)(
                tokenAddress,
                tokenAmount,
                0,
                0,
                address(this),
                block.timestamp
            );
     }

    // returns token amount
    function fogDensity() external view returns (uint256) {
        return balanceOf(address(this));
    }
    
    function ERC20LpSupply() external view returns (uint256) {
        return IUniswapV2ERC20(tokenAddressPair).balanceOf(address(this));
     }

    // returns token amount
    function lockedSupply() external view returns (uint256) {
        uint256 lpTotalSupply = ERC20(uniswapV2Pair).totalSupply();
        uint256 lpBalance = lockedLiquidity();
        uint256 percentOfLpTotalSupply = lpBalance.mul(1e12).div(lpTotalSupply);

        uint256 uniswapBalance = balanceOf(uniswapV2Pair);
        uint256 _lockedSupply = uniswapBalance.mul(percentOfLpTotalSupply).div(1e12);
        return _lockedSupply;
    }

    // returns token amount
    function burnedSupply() external view returns (uint256) {
        uint256 lpTotalSupply = ERC20(uniswapV2Pair).totalSupply();
        uint256 lpBalance = burnedLiquidity();
        uint256 percentOfLpTotalSupply = lpBalance.mul(1e12).div(lpTotalSupply);

        uint256 uniswapBalance = balanceOf(uniswapV2Pair);
        uint256 _burnedSupply = uniswapBalance.mul(percentOfLpTotalSupply).div(1e12);
        return _burnedSupply;
    }

    // returns LP amount, not token amount
    function burnableLiquidity() public view returns (uint256) {
        return ERC20(uniswapV2Pair).balanceOf(address(this));
    }

    // returns LP amount, not token amount
    function burnedLiquidity() public view returns (uint256) {
        return ERC20(uniswapV2Pair).balanceOf(address(0));
    }

    // returns LP amount, not token amount
    function lockedLiquidity() public view returns (uint256) {
        return burnableLiquidity().add(burnedLiquidity());
    }
     /*
        calculates a percentage of tokens to hold as the fee
    */
    function calculateVisabilityFee(
        uint256 _amount,
        uint8 _feeDecimals,
        uint32 _percentage
    ) public pure returns (uint256 locked) {
        locked = _amount.mul(_percentage).div(
            10**(uint256(_feeDecimals) + 2)
        );
    }
}
    
interface IUniswapV2Router02 {
    function WETH() external pure returns (address);
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    
     function swapExactETHForTokensSupportingFeeOnTransferTokens(
         uint amountOutMin,
         address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    
     function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    
}

interface IUniswapV2Pair {
    function sync() external;

}

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

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

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

} 

interface IWETH {
    
    function deposit() external payable;
}

// File: contracts/Governance.sol

pragma solidity ^0.5.17;



contract Governance is ERC20, ERC20Detailed {
    using SafeMath for uint256;

    function _transfer(address from, address to, uint256 amount) internal {
        _moveDelegates(_delegates[from], _delegates[to], amount);
        super._transfer(from, to, amount);
    }

    function _mint(address account, uint256 amount) internal {
        _moveDelegates(address(0), _delegates[account], amount);
        super._mint(account, amount);
    }

    function _burn(address account, uint256 amount) internal {
        _moveDelegates(_delegates[account], address(0), amount);
        super._burn(account, amount);
    }

    // Copied from Sav3 code which was:
    // Copied and modified from YAM code:
    // https://github.com/yam-finance/yam-protocol/blob/master/contracts/token/YAMGovernanceStorage.sol
    // https://github.com/yam-finance/yam-protocol/blob/master/contracts/token/YAMGovernance.sol
    // Which is copied and modified from COMPOUND:
    // https://github.com/compound-finance/compound-protocol/blob/master/contracts/Governance/Comp.sol

    /// @notice A record of each accounts delegate
    mapping (address => address) internal _delegates;

    /// @notice A checkpoint for marking number of votes from a given block
    struct Checkpoint {
        uint32 fromBlock;
        uint256 votes;
    }

    /// @notice A record of votes checkpoints for each account, by index
    mapping (address => mapping (uint32 => Checkpoint)) public checkpoints;

    /// @notice The number of checkpoints for each account
    mapping (address => uint32) public numCheckpoints;

    /// @notice The EIP-712 typehash for the contract's domain
    bytes32 public constant DOMAIN_TYPEHASH = keccak256("EIP712Domain(string name,uint256 chainId,address verifyingContract)");

    /// @notice The EIP-712 typehash for the delegation struct used by the contract
    bytes32 public constant DELEGATION_TYPEHASH = keccak256("Delegation(address delegatee,uint256 nonce,uint256 expiry)");

    /// @notice A record of states for signing / validating signatures
    mapping (address => uint) public nonces;

      /// @notice An event thats emitted when an account changes its delegate
    event DelegateChanged(address indexed delegator, address indexed fromDelegate, address indexed toDelegate);

    /// @notice An event thats emitted when a delegate account's vote balance changes
    event DelegateVotesChanged(address indexed delegate, uint previousBalance, uint newBalance);

    /**
     * @notice Delegate votes from `msg.sender` to `delegatee`
     * @param delegator The address to get delegatee for
     */
    function delegates(address delegator)
        external
        view
        returns (address)
    {
        return _delegates[delegator];
    }

   /**
    * @notice Delegate votes from `msg.sender` to `delegatee`
    * @param delegatee The address to delegate votes to
    */
    function delegate(address delegatee) external {
        return _delegate(msg.sender, delegatee);
    }

    /**
     * @notice Delegates votes from signatory to `delegatee`
     * @param delegatee The address to delegate votes to
     * @param nonce The contract state required to match the signature
     * @param expiry The time at which to expire the signature
     * @param v The recovery byte of the signature
     * @param r Half of the ECDSA signature pair
     * @param s Half of the ECDSA signature pair
     */
    function delegateBySig(
        address delegatee,
        uint nonce,
        uint expiry,
        uint8 v,
        bytes32 r,
        bytes32 s
    )
        external
    {
        bytes32 domainSeparator = keccak256(
            abi.encode(
                DOMAIN_TYPEHASH,
                keccak256(bytes(name())),
                getChainId(),
                address(this)
            )
        );

        bytes32 structHash = keccak256(
            abi.encode(
                DELEGATION_TYPEHASH,
                delegatee,
                nonce,
                expiry
            )
        );

        bytes32 digest = keccak256(
            abi.encodePacked(
                "\x19\x01",
                domainSeparator,
                structHash
            )
        );

        address signatory = ecrecover(digest, v, r, s);
        require(signatory != address(0), "ERC20Governance::delegateBySig: invalid signature");
        require(nonce == nonces[signatory]++, "ERC20Governance::delegateBySig: invalid nonce");
        require(now <= expiry, "ERC20Governance::delegateBySig: signature expired");
        return _delegate(signatory, delegatee);
    }

    /**
     * @notice Gets the current votes balance for `account`
     * @param account The address to get votes balance
     * @return The number of current votes for `account`
     */
    function getCurrentVotes(address account)
        external
        view
        returns (uint256)
    {
        uint32 nCheckpoints = numCheckpoints[account];
        return nCheckpoints > 0 ? checkpoints[account][nCheckpoints - 1].votes : 0;
    }

    /**
     * @notice Determine the prior number of votes for an account as of a block number
     * @dev Block number must be a finalized block or else this function will revert to prevent misinformation.
     * @param account The address of the account to check
     * @param blockNumber The block number to get the vote balance at
     * @return The number of votes the account had as of the given block
     */
    function getPriorVotes(address account, uint blockNumber)
        external
        view
        returns (uint256)
    {
        require(blockNumber < block.number, "ERC20Governance::getPriorVotes: not yet determined");

        uint32 nCheckpoints = numCheckpoints[account];
        if (nCheckpoints == 0) {
            return 0;
        }

        // First check most recent balance
        if (checkpoints[account][nCheckpoints - 1].fromBlock <= blockNumber) {
            return checkpoints[account][nCheckpoints - 1].votes;
        }

        // Next check implicit zero balance
        if (checkpoints[account][0].fromBlock > blockNumber) {
            return 0;
        }

        uint32 lower = 0;
        uint32 upper = nCheckpoints - 1;
        while (upper > lower) {
            uint32 center = upper - (upper - lower) / 2; // ceil, avoiding overflow
            Checkpoint memory cp = checkpoints[account][center];
            if (cp.fromBlock == blockNumber) {
                return cp.votes;
            } else if (cp.fromBlock < blockNumber) {
                lower = center;
            } else {
                upper = center - 1;
            }
        }
        return checkpoints[account][lower].votes;
    }

    function _delegate(address delegator, address delegatee)
        internal
    {
        address currentDelegate = _delegates[delegator];
        uint256 delegatorBalance = balanceOf(delegator); // balance of underlying ERC20Governances (not scaled);
        _delegates[delegator] = delegatee;

        emit DelegateChanged(delegator, currentDelegate, delegatee);

        _moveDelegates(currentDelegate, delegatee, delegatorBalance);
    }

    function _moveDelegates(address srcRep, address dstRep, uint256 amount) internal {
        if (srcRep != dstRep && amount > 0) {
            if (srcRep != address(0)) {
                // decrease old representative
                uint32 srcRepNum = numCheckpoints[srcRep];
                uint256 srcRepOld = srcRepNum > 0 ? checkpoints[srcRep][srcRepNum - 1].votes : 0;
                uint256 srcRepNew = srcRepOld.sub(amount);
                _writeCheckpoint(srcRep, srcRepNum, srcRepOld, srcRepNew);
            }

            if (dstRep != address(0)) {
                // increase new representative
                uint32 dstRepNum = numCheckpoints[dstRep];
                uint256 dstRepOld = dstRepNum > 0 ? checkpoints[dstRep][dstRepNum - 1].votes : 0;
                uint256 dstRepNew = dstRepOld.add(amount);
                _writeCheckpoint(dstRep, dstRepNum, dstRepOld, dstRepNew);
            }
        }
    }

    function _writeCheckpoint(
        address delegatee,
        uint32 nCheckpoints,
        uint256 oldVotes,
        uint256 newVotes
    )
        internal
    {
        uint32 blockNumber = safe32(block.number, "ERC20Governance::_writeCheckpoint: block number exceeds 32 bits");

        if (nCheckpoints > 0 && checkpoints[delegatee][nCheckpoints - 1].fromBlock == blockNumber) {
            checkpoints[delegatee][nCheckpoints - 1].votes = newVotes;
        } else {
            checkpoints[delegatee][nCheckpoints] = Checkpoint(blockNumber, newVotes);
            numCheckpoints[delegatee] = nCheckpoints + 1;
        }

        emit DelegateVotesChanged(delegatee, oldVotes, newVotes);
    }

    function safe32(uint n, string memory errorMessage) internal pure returns (uint32) {
        require(n < 2**32, errorMessage);
        return uint32(n);
    }

    function getChainId() internal pure returns (uint) {
        uint256 chainId;
        assembly { chainId := chainid() }
        return chainId;
    }
}

// File: @openzeppelin/contracts/access/roles/SignerRole.sol

pragma solidity ^0.5.0;



contract SignerRole is Context {
    using Roles for Roles.Role;

    event SignerAdded(address indexed account);
    event SignerRemoved(address indexed account);

    Roles.Role private _signers;

    constructor () internal {
        _addSigner(_msgSender());
    }

    modifier onlySigner() {
        require(isSigner(_msgSender()), "SignerRole: caller does not have the Signer role");
        _;
    }

    function isSigner(address account) public view returns (bool) {
        return _signers.has(account);
    }

    function addSigner(address account) public onlySigner {
        _addSigner(account);
    }

    function renounceSigner() public {
        _removeSigner(_msgSender());
    }

    function _addSigner(address account) internal {
        _signers.add(account);
        emit SignerAdded(account);
    }

    function _removeSigner(address account) internal {
        _signers.remove(account);
        emit SignerRemoved(account);
    }
}

// File: contracts/FOG.sol

/*
  █████  ▒█████    ▄████ 
▓██   ▒ ▒██▒  ██▒ ██▒ ▀█▒
▒████ ░ ▒██░  ██▒ ██░▄▄▄ ░
 ▓█▒  ░▒ ██   ██░░▓█  ██▓
░ █░░   ░ ████▓▒░ ▒▓███▀  ▒
 ▒ ░    ░ ▒░▒░▒░      ░▒  
          ░ ▒ ▒░     ░   ░ 
 ░ ░  ░ ░ ░   ░ ░   ▒  ░ ░ 
  ░ ░ ░  ░        ░   ░ ░       
 ░   ░ ░  ░     ░ ▒ ░ ░░   
     ░   ░ ░ ░ ░ ░░
   ░   ░ ░ ░ ░ ░░  ░  ░                  
    ░ ░   ░ ░     ░ ░            
       ░      ░ 
      ░     ░   ░   ░   

FOG is an experimental, governance branch of the LIQ (LIQUID) token ecosystem.

FOG is a fixed supply token that is acquired by pairing LIQ/ETH LP and staking
the UniV2 LP tokens at https://liquidefi.co/ 

FOG is then emitted to staking LP providers.

The benefits of holding FOG are twofold:

1. FOG LP providers will be rewarded with ETH and FOG from each 
FOG transaction. Initially, these rewards are pooled in the contract. 
At any time, a provider can call the RewardLiquidityProviders command (Condensate)
on the contract, or 'Condensate.exe' on the website, which then automatically 
divides and dispenses rewards to LP holders (this removes any need to stake the FOG LP). 
The reward amount an individual provider receives is based on said LP provider’s share 
of the pool.

How does this work? 

FOG collects a 7.5% fee on all transfers (which can be later adjusted). 
This fee is then split between ***three functions:*** 

- 60% to adding permanently locked FOG LP 
- 30% FOG/ETH sent to the UNIV2 pool. This is then distributed to 
providers based on your pool share percentage after calling the 
RewardLiquidityProviders command (aka Condensate.exe)
- 10% goes to market buying LIQ which is then converted to LIQ/ETH LP. 

2. FOG is the governance token to the LIQ ecosystem.

All rates are adjustable by way of a DAO, controlled by FOG holders / voting.
FOG will have additional governance abilities to be disclosed later as new
strategies reveal themselves to continue to evolve the LIQ ecosystem. 

*/

pragma solidity ^0.5.17;






contract FOG is 
    ERC20,
    ERC20Detailed("Fog", "FOG", 18),
    // governance must be before transfer liquidity lock
    // or delegates are not updated correctly
    Governance,
    DoublePoggerino,
    SignerRole
{
    constructor() public {
        // mint tokens which will initially belong to deployer
        // deployer should go seed the pair with some initial liquidity
        _mint(msg.sender, 1000000 * 10**18);
    }
         
        
    function setUniswapV2Router(address _uniswapV2Router) public onlySigner {
        require(uniswapV2Router == address(0), "FogToken::setUniswapV2Router: already set");
        uniswapV2Router = _uniswapV2Router;
    }

    function setUniswapV2Pair(address _uniswapV2Pair) public onlySigner {
        require(uniswapV2Pair == address(0), "FogToken::setUniswapV2Pair: already set");
        uniswapV2Pair = _uniswapV2Pair;
    }
    
    
    function setErc20TokenAddress(address _tokenAddress) public onlySigner {
            tokenAddress = _tokenAddress;
        emit TokenAddressUpdate(tokenAddress);
     }
     
     function setErc20TokenPairAddress(address _tokenAddressPair) public onlySigner {
        tokenAddressPair = _tokenAddressPair;
         emit TokenAddressPairUpdate(tokenAddress); 
     }
     
     function setWethAddress(address _wethAddress) public onlySigner {
         wethAddress = _wethAddress;
         emit WethAddressUpdate(wethAddress); 
     } 

   function updateFees(uint8 _feeDecimals, uint32 _feePercentage)
        public
        onlySigner
    {
        feeDecimals = _feeDecimals;
        feePercentage = _feePercentage;
        emit FeeUpdated(_feeDecimals, _feePercentage);
    }
    
    function updateRewardsSplit(uint32 _fogRewardPercentage)
        public
        onlySigner
    {
        fogRewardPercentage = _fogRewardPercentage;
        emit RewardsUpdate(_fogRewardPercentage);
    }
    
    function updateLpSplits(uint32 _fogLockPercentage, uint32 _tokenLockPercentage) public onlySigner 
    {
        fogLockPercentage = _fogLockPercentage;
        tokenLockPercentage = _tokenLockPercentage;
        emit LocksUpdate(_fogLockPercentage, _tokenLockPercentage);
    }
    
        // this is to remove the token LP that fog contract buys
        // this may or may not be used as future incentives
        // UNABLE TO REMOVE FOG LP due to require
        
    function withdrawForeignTokens(address _tokenContract, address _to) onlySigner public returns (bool) {
        require(_tokenContract != address(this), "cannot withdraw Fog");
        require(_tokenContract != address(uniswapV2Pair), "cannot withdraw FOG LP");
        ERC20 token = ERC20(_tokenContract);
        uint256 amount = token.balanceOf(address(this));
        return token.transfer(_to, amount);
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethAmount","type":"uint256"}],"name":"BoughtTokenLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"lpTokenAmount","type":"uint256"}],"name":"BurnLiquidity","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegator","type":"address"},{"indexed":true,"internalType":"address","name":"fromDelegate","type":"address"},{"indexed":true,"internalType":"address","name":"toDelegate","type":"address"}],"name":"DelegateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegate","type":"address"},{"indexed":false,"internalType":"uint256","name":"previousBalance","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newBalance","type":"uint256"}],"name":"DelegateVotesChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"feeDecimals","type":"uint8"},{"indexed":false,"internalType":"uint32","name":"feePercentage","type":"uint32"}],"name":"FeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethAmount","type":"uint256"}],"name":"LockLiquidity","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint32","name":"fogLockPercentage","type":"uint32"},{"indexed":false,"internalType":"uint32","name":"tokenLockPercentage","type":"uint32"}],"name":"LocksUpdate","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"PauserAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"PauserRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"ethAmount","type":"uint256"}],"name":"RewardedEth","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"RewardedFog","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint32","name":"fogRewardPercentage","type":"uint32"}],"name":"RewardsUpdate","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"SignerAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"SignerRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"tokenAddressPair","type":"address"}],"name":"TokenAddressPairUpdate","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"tokenAddress","type":"address"}],"name":"TokenAddressUpdate","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"wethAddress","type":"address"}],"name":"WethAddressUpdate","type":"event"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"constant":true,"inputs":[],"name":"DELEGATION_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"DOMAIN_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"ERC20LpSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"_ethReceived","type":"uint256"}],"name":"_rewardLiquidityProvidersETH","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addPauser","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addSigner","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"balances","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"burnLiquidity","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"burnableLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"burnedLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"burnedSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint8","name":"_feeDecimals","type":"uint8"},{"internalType":"uint32","name":"_percentage","type":"uint32"}],"name":"calculateVisabilityFee","outputs":[{"internalType":"uint256","name":"locked","type":"uint256"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint32","name":"","type":"uint32"}],"name":"checkpoints","outputs":[{"internalType":"uint32","name":"fromBlock","type":"uint32"},{"internalType":"uint256","name":"votes","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"delegatee","type":"address"}],"name":"delegate","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"delegatee","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"delegateBySig","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"delegator","type":"address"}],"name":"delegates","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"feeDecimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"feePercentage","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"fogDensity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"fogLockPercentage","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"fogRewardPercentage","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"_fogDensity","type":"uint256"}],"name":"fogRollingIn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getCurrentVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"getPriorVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isPauser","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isSigner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"liquidityRewardPercentage","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"lockedLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"lockedSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"numCheckpoints","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renouncePauser","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renounceSigner","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"rewardLiquidityProviders","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_tokenAddress","type":"address"}],"name":"setErc20TokenAddress","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_tokenAddressPair","type":"address"}],"name":"setErc20TokenPairAddress","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_uniswapV2Pair","type":"address"}],"name":"setUniswapV2Pair","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_uniswapV2Router","type":"address"}],"name":"setUniswapV2Router","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_wethAddress","type":"address"}],"name":"setWethAddress","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"tokenAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"tokenAddressPair","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"tokenLockPercentage","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint8","name":"_feeDecimals","type":"uint8"},{"internalType":"uint32","name":"_feePercentage","type":"uint32"}],"name":"updateFees","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint32","name":"_fogLockPercentage","type":"uint32"},{"internalType":"uint32","name":"_tokenLockPercentage","type":"uint32"}],"name":"updateLpSplits","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint32","name":"_fogRewardPercentage","type":"uint32"}],"name":"updateRewardsSplit","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"wethAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_tokenContract","type":"address"},{"internalType":"address","name":"_to","type":"address"}],"name":"withdrawForeignTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604080518082018252600380825262466f6760e81b6020808401918252845180860190955282855262464f4760e81b9085015282519293926012926200005a92909162000885565b5081516200007090600490602085019062000885565b506005805460ff191660ff9290921691909117905550620000a5905062000096620000fa565b6001600160e01b03620000ff16565b600b805460ff19169055620000d5620000c66001600160e01b03620000fa16565b6001600160e01b036200015116565b620000f43369d3c21bcecceda10000006001600160e01b03620001a316565b62000927565b335b90565b6200011a81600a620001ee60201b620040041790919060201c565b6040516001600160a01b038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b6200016c816012620001ee60201b620040041790919060201c565b6040516001600160a01b038216907f47d1c22a25bb3a5d4e481b9b1e6944c2eade3181a0a20b495ed61d35b5323f2490600090a250565b6001600160a01b03808316600090815260066020526040812054620001d39216836001600160e01b036200027b16565b620001ea8282620003ff60201b620044311760201c565b5050565b6200020382826001600160e01b036200050016565b1562000256576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b816001600160a01b0316836001600160a01b0316141580156200029e5750600081115b15620003fa576001600160a01b038316156200034f576001600160a01b03831660009081526008602052604081205463ffffffff169081620002e257600062000314565b6001600160a01b038516600090815260076020908152604080832063ffffffff60001987011684529091529020600101545b905060006200033284836200056960201b62002f361790919060201c565b90506200034b868484846001600160e01b03620005ba16565b5050505b6001600160a01b03821615620003fa576001600160a01b03821660009081526008602052604081205463ffffffff1690816200038d576000620003bf565b6001600160a01b038416600090815260076020908152604080832063ffffffff60001987011684529091529020600101545b90506000620003dd84836200072e60201b620032c01790919060201c565b9050620003f6858484846001600160e01b03620005ba16565b5050505b505050565b6001600160a01b0382166200045b576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b62000477816002546200072e60201b620032c01790919060201c565b6002556001600160a01b03821660009081526020818152604090912054620004aa918390620032c06200072e821b17901c565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b60006001600160a01b038216620005495760405162461bcd60e51b8152600401808060200182810382526022815260200180620053356022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b6000620005b383836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506200078960201b60201c565b9392505050565b6000620005ea436040518060600160405280603f8152602001620052f6603f91396001600160e01b036200082416565b905060008463ffffffff161180156200063457506001600160a01b038516600090815260076020908152604080832063ffffffff6000198901811685529252909120548282169116145b1562000673576001600160a01b038516600090815260076020908152604080832063ffffffff60001989011684529091529020600101829055620006e4565b60408051808201825263ffffffff808416825260208083018681526001600160a01b038a166000818152600784528681208b8616825284528681209551865490861663ffffffff19918216178755925160019687015590815260089092529390208054928801909116919092161790555b604080518481526020810184905281516001600160a01b038816927fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724928290030190a25050505050565b600082820183811015620005b3576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600081848411156200081c5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015620007e0578181015183820152602001620007c6565b50505050905090810190601f1680156200080e5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008164010000000084106200087d5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315620007e0578181015183820152602001620007c6565b509192915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620008c857805160ff1916838001178555620008f8565b82800160010185558215620008f8579182015b82811115620008f8578251825591602001919060010190620008db565b50620009069291506200090a565b5090565b620000fc91905b8082111562000906576000815560010162000911565b6149bf80620009376000396000f3fe6080604052600436106103b85760003560e01c806371db5869116101f2578063b47ba5281161010d578063db647b76116100a0578063e7a324dc1161006f578063e7a324dc14610d3e578063eb107e2014610d53578063eb12d61e14610d86578063f1127ed814610db9576103b8565b8063db647b7614610cc4578063dd62ed3e14610cd9578063e4f5a6ab14610d14578063e5c8b03d14610d29576103b8565b8063cc0f1786116100dc578063cc0f178614610c4a578063d19b93f114610c5f578063d6aeb28c14610c74578063da942cbf14610caf576103b8565b8063b47ba52814610b75578063b4b5ea5714610bae578063c3cda52014610be1578063ca5c7b9114610c35576103b8565b806399494abd11610185578063a457c2d711610154578063a457c2d714610abb578063a9059cbb14610af4578063a96e242314610b2d578063b439824414610b60576103b8565b806399494abd14610a265780639d76ea5814610a5e578063a001ecdd14610a73578063a29a608914610a88576103b8565b806382dc1ec4116101c157806382dc1ec4146109b45780638456cb59146109e7578063858750ab146109fc57806395d89b4114610a11576103b8565b806371db5869146108eb578063782d6fe1146109155780637df73e271461094e5780637ecebe0014610981576103b8565b806339509351116102e2578063587cde1e116102755780636a7eed50116102445780636a7eed50146108465780636ef8d66d146108705780636fcfff451461088557806370a08231146108b8576103b8565b8063587cde1e1461079b5780635c19a95c146107ce5780635c975abb146108015780635f17e52314610816576103b8565b80634c3aad0f116102b15780634c3aad0f146107295780634f0e0ef31461073e57806355d0a1d0146107535780635675688d14610768576103b8565b806339509351146106935780633f4ba83a146106cc57806346fbf68e146106e157806349bd5a5e14610714576103b8565b80632171caa41161035a5780632898cafa116103295780632898cafa1461062957806328bec02b1461063e5780632d87ea6014610653578063313ce56714610668576103b8565b80632171caa41461054657806323b872dd1461057457806326dacb40146105b757806327e235e3146105f6576103b8565b80631694505e116103965780631694505e146104c457806318160ddd146104f55780631ec3ae291461051c57806320606b7014610531576103b8565b806306fdde03146103ba578063095ea7b3146104445780631419841d14610491575b005b3480156103c657600080fd5b506103cf610e18565b6040805160208082528351818301528351919283929083019185019080838360005b838110156104095781810151838201526020016103f1565b50505050905090810190601f1680156104365780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561045057600080fd5b5061047d6004803603604081101561046757600080fd5b506001600160a01b038135169060200135610eae565b604080519115158252519081900360200190f35b34801561049d57600080fd5b506103b8600480360360208110156104b457600080fd5b50356001600160a01b0316610f1c565b3480156104d057600080fd5b506104d9610ff3565b604080516001600160a01b039092168252519081900360200190f35b34801561050157600080fd5b5061050a611007565b60408051918252519081900360200190f35b34801561052857600080fd5b506104d961100d565b34801561053d57600080fd5b5061050a61101c565b34801561055257600080fd5b5061055b611037565b6040805163ffffffff9092168252519081900360200190f35b34801561058057600080fd5b5061047d6004803603606081101561059757600080fd5b506001600160a01b0381358116916020810135909116906040013561104f565b3480156105c357600080fd5b5061050a600480360360608110156105da57600080fd5b50803590602081013560ff16906040013563ffffffff166110bd565b34801561060257600080fd5b5061050a6004803603602081101561061957600080fd5b50356001600160a01b03166110eb565b34801561063557600080fd5b5061050a6110fd565b34801561064a57600080fd5b5061050a611195565b34801561065f57600080fd5b5061050a6111f9565b34801561067457600080fd5b5061067d611209565b6040805160ff9092168252519081900360200190f35b34801561069f57600080fd5b5061047d600480360360408110156106b657600080fd5b506001600160a01b038135169060200135611212565b3480156106d857600080fd5b506103b8611277565b3480156106ed57600080fd5b5061047d6004803603602081101561070457600080fd5b50356001600160a01b0316611387565b34801561072057600080fd5b506104d961139a565b34801561073557600080fd5b5061055b6113a9565b34801561074a57600080fd5b506104d96113b5565b34801561075f57600080fd5b5061050a6113c4565b34801561077457600080fd5b506103b86004803603602081101561078b57600080fd5b50356001600160a01b03166114ac565b3480156107a757600080fd5b506104d9600480360360208110156107be57600080fd5b50356001600160a01b0316611567565b3480156107da57600080fd5b506103b8600480360360208110156107f157600080fd5b50356001600160a01b0316611585565b34801561080d57600080fd5b5061047d611592565b34801561082257600080fd5b506103b86004803603602081101561083957600080fd5b503563ffffffff1661159b565b34801561085257600080fd5b506103b86004803603602081101561086957600080fd5b503561164a565b34801561087c57600080fd5b506103b86117c2565b34801561089157600080fd5b5061055b600480360360208110156108a857600080fd5b50356001600160a01b03166117d4565b3480156108c457600080fd5b5061050a600480360360208110156108db57600080fd5b50356001600160a01b03166117ec565b3480156108f757600080fd5b506103b86004803603602081101561090e57600080fd5b5035611807565b34801561092157600080fd5b5061050a6004803603604081101561093857600080fd5b506001600160a01b038135169060200135611986565b34801561095a57600080fd5b5061047d6004803603602081101561097157600080fd5b50356001600160a01b0316611b8e565b34801561098d57600080fd5b5061050a600480360360208110156109a457600080fd5b50356001600160a01b0316611ba1565b3480156109c057600080fd5b506103b8600480360360208110156109d757600080fd5b50356001600160a01b0316611bb3565b3480156109f357600080fd5b506103b8611c02565b348015610a0857600080fd5b5061050a611cf4565b348015610a1d57600080fd5b506103cf611d58565b348015610a3257600080fd5b506103b860048036036040811015610a4957600080fd5b5063ffffffff81358116916020013516611db9565b348015610a6a57600080fd5b506104d9611eaf565b348015610a7f57600080fd5b5061055b611ebe565b348015610a9457600080fd5b506103b860048036036020811015610aab57600080fd5b50356001600160a01b0316611ee3565b348015610ac757600080fd5b5061047d60048036036040811015610ade57600080fd5b506001600160a01b038135169060200135611fab565b348015610b0057600080fd5b5061047d60048036036040811015610b1757600080fd5b506001600160a01b038135169060200135612010565b348015610b3957600080fd5b506103b860048036036020811015610b5057600080fd5b50356001600160a01b0316612075565b348015610b6c57600080fd5b5061050a61212d565b348015610b8157600080fd5b506103b860048036036040811015610b9857600080fd5b50803560ff16906020013563ffffffff1661214e565b348015610bba57600080fd5b5061050a60048036036020811015610bd157600080fd5b50356001600160a01b0316612262565b348015610bed57600080fd5b506103b8600480360360c0811015610c0457600080fd5b506001600160a01b038135169060208101359060408101359060ff6060820135169060808101359060a001356122c6565b348015610c4157600080fd5b5061050a612592565b348015610c5657600080fd5b5061067d61261b565b348015610c6b57600080fd5b5061055b61263c565b348015610c8057600080fd5b5061047d60048036036040811015610c9757600080fd5b506001600160a01b0381358116916020013516612665565b348015610cbb57600080fd5b506103b86128a2565b348015610cd057600080fd5b506103b8612a43565b348015610ce557600080fd5b5061050a60048036036040811015610cfc57600080fd5b506001600160a01b0381358116916020013516612a54565b348015610d2057600080fd5b5061055b612a7f565b348015610d3557600080fd5b506103b8612a93565b348015610d4a57600080fd5b5061050a612aa3565b348015610d5f57600080fd5b506103b860048036036020811015610d7657600080fd5b50356001600160a01b0316612abe565b348015610d9257600080fd5b506103b860048036036020811015610da957600080fd5b50356001600160a01b0316612b76565b348015610dc557600080fd5b50610df860048036036040811015610ddc57600080fd5b5080356001600160a01b0316906020013563ffffffff16612bc5565b6040805163ffffffff909316835260208301919091528051918290030190f35b60038054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610ea45780601f10610e7957610100808354040283529160200191610ea4565b820191906000526020600020905b815481529060010190602001808311610e8757829003601f168201915b5050505050905090565b600b5460009060ff1615610f09576040805162461bcd60e51b815260206004820152601060248201527f5061757361626c653a2070617573656400000000000000000000000000000000604482015290519081900360640190fd5b610f138383612bf2565b90505b92915050565b610f2c610f27612c0f565b611b8e565b610f675760405162461bcd60e51b81526004018080602001828103825260308152602001806147eb6030913960400191505060405180910390fd5b600b5461010090046001600160a01b031615610fb45760405162461bcd60e51b81526004018080602001828103825260298152602001806145456029913960400191505060405180910390fd5b600b80546001600160a01b03909216610100027fffffffffffffffffffffff0000000000000000000000000000000000000000ff909216919091179055565b600b5461010090046001600160a01b031681565b60025490565b600e546001600160a01b031681565b6040518060436146b982396043019050604051809103902081565b60105468010000000000000000900463ffffffff1681565b600b5460009060ff16156110aa576040805162461bcd60e51b815260206004820152601060248201527f5061757361626c653a2070617573656400000000000000000000000000000000604482015290519081900360640190fd5b6110b5848484612c13565b949350505050565b60006110b5600260ff851601600a0a6110df8663ffffffff80871690612ca016565b9063ffffffff612cf916565b60116020526000908152604090205481565b600c54604080517f70a08231000000000000000000000000000000000000000000000000000000008152600060048201819052915191926001600160a01b0316916370a0823191602480820192602092909190829003018186803b15801561116457600080fd5b505afa158015611178573d6000803e3d6000fd5b505050506040513d602081101561118e57600080fd5b5051905090565b600e54604080517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b15801561116457600080fd5b6000611204306117ec565b905090565b60055460ff1690565b600b5460009060ff161561126d576040805162461bcd60e51b815260206004820152601060248201527f5061757361626c653a2070617573656400000000000000000000000000000000604482015290519081900360640190fd5b610f138383612d3b565b611287611282612c0f565b611387565b6112c25760405162461bcd60e51b815260040180806020018281038252603081526020018061456e6030913960400191505060405180910390fd5b600b5460ff16611319576040805162461bcd60e51b815260206004820152601460248201527f5061757361626c653a206e6f7420706175736564000000000000000000000000604482015290519081900360640190fd5b600b80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61136a612c0f565b604080516001600160a01b039092168252519081900360200190a1565b6000610f16600a8363ffffffff612d8f16565b600c546001600160a01b031681565b60105463ffffffff1681565b600f546001600160a01b031681565b600080600c60009054906101000a90046001600160a01b03166001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b15801561141557600080fd5b505afa158015611429573d6000803e3d6000fd5b505050506040513d602081101561143f57600080fd5b50519050600061144d6110fd565b9050600061146a836110df8464e8d4a5100063ffffffff612ca016565b600c54909150600090611485906001600160a01b03166117ec565b905060006114a264e8d4a510006110df848663ffffffff612ca016565b9550505050505090565b6114b7610f27612c0f565b6114f25760405162461bcd60e51b81526004018080602001828103825260308152602001806147eb6030913960400191505060405180910390fd5b600e80547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0383811691909117909155600d546040805191909216815290517f06c5c102bc0fb3e459e4385f59397c86c78ebb61772f0b82e4fe630fe8b68246916020908290030190a150565b6001600160a01b039081166000908152600660205260409020541690565b61158f3382612df6565b50565b600b5460ff1690565b6115a6610f27612c0f565b6115e15760405162461bcd60e51b81526004018080602001828103825260308152602001806147eb6030913960400191505060405180910390fd5b6010805463ffffffff83167fffffffffffffffffffffffffffffffffffffffffffffffffffffffff00000000909116811790915560408051918252517fe30690a9823f6f2fa1cff7880b59f3764efb55bb56097a17723282e4c2d1c24b9181900360200190a150565b611653306117ec565b8111156116915760405162461bcd60e51b815260040180806020018281038252605381526020018061471d6053913960600191505060405180910390fd5b806116cd5760405162461bcd60e51b81526004018080602001828103825260428152602001806145f16042913960600191505060405180910390fd5b600f5460105460009161170b91849174010000000000000000000000000000000000000000900460ff1690640100000000900463ffffffff166110bd565b905061171681612ea3565b6000611728838363ffffffff612f3616565b600f546010549192506000916117629184917401000000000000000000000000000000000000000090910460ff169063ffffffff166110bd565b905061176d81612f78565b600061177f838363ffffffff612f3616565b905060006117af82600f60149054906101000a900460ff16601060089054906101000a900463ffffffff166110bd565b90506117ba81612fd1565b505050505050565b6117d26117cd612c0f565b6131ae565b565b60086020526000908152604090205463ffffffff1681565b6001600160a01b031660009081526020819052604090205490565b600f60009054906101000a90046001600160a01b03166001600160a01b031663d0e30db0826040518263ffffffff1660e01b81526004016000604051808303818588803b15801561185757600080fd5b505af115801561186b573d6000803e3d6000fd5b5050600f54600c54604080517fa9059cbb0000000000000000000000000000000000000000000000000000000081526001600160a01b03928316600482015260248101889052905191909216945063a9059cbb9350604480830193506020928290030181600087803b1580156118e057600080fd5b505af11580156118f4573d6000803e3d6000fd5b505050506040513d602081101561190a57600080fd5b5050600c54604080517ffff6cae900000000000000000000000000000000000000000000000000000000815290516001600160a01b039092169163fff6cae99160048082019260009290919082900301818387803b15801561196b57600080fd5b505af115801561197f573d6000803e3d6000fd5b5050505050565b60004382106119c65760405162461bcd60e51b81526004018080602001828103825260328152602001806148406032913960400191505060405180910390fd5b6001600160a01b03831660009081526008602052604090205463ffffffff16806119f4576000915050610f16565b6001600160a01b038416600090815260076020908152604080832063ffffffff600019860181168552925290912054168310611a63576001600160a01b03841660009081526007602090815260408083206000199490940163ffffffff16835292905220600101549050610f16565b6001600160a01b038416600090815260076020908152604080832083805290915290205463ffffffff16831015611a9e576000915050610f16565b600060001982015b8163ffffffff168163ffffffff161115611b5757600282820363ffffffff16048103611ad061441a565b506001600160a01b038716600090815260076020908152604080832063ffffffff808616855290835292819020815180830190925280549093168082526001909301549181019190915290871415611b3257602001519450610f169350505050565b805163ffffffff16871115611b4957819350611b50565b6001820392505b5050611aa6565b506001600160a01b038516600090815260076020908152604080832063ffffffff9094168352929052206001015491505092915050565b6000610f1660128363ffffffff612d8f16565b60096020526000908152604090205481565b611bbe611282612c0f565b611bf95760405162461bcd60e51b815260040180806020018281038252603081526020018061456e6030913960400191505060405180910390fd5b61158f816131f6565b611c0d611282612c0f565b611c485760405162461bcd60e51b815260040180806020018281038252603081526020018061456e6030913960400191505060405180910390fd5b600b5460ff1615611ca0576040805162461bcd60e51b815260206004820152601060248201527f5061757361626c653a2070617573656400000000000000000000000000000000604482015290519081900360640190fd5b600b80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861136a612c0f565b600c54604080517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b15801561116457600080fd5b60048054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610ea45780601f10610e7957610100808354040283529160200191610ea4565b611dc4610f27612c0f565b611dff5760405162461bcd60e51b81526004018080602001828103825260308152602001806147eb6030913960400191505060405180910390fd5b601080547fffffffffffffffffffffffffffffffffffffffffffffffff00000000ffffffff1664010000000063ffffffff858116918202929092177fffffffffffffffffffffffffffffffffffffffff00000000ffffffffffffffff16680100000000000000009285169283021790925560408051928352602083019190915280517f7f5ee2cd301347ace459683b3451ff4afba9687d0be61feaa95490db46cb4e619281900390910190a15050565b600d546001600160a01b031681565b600f547501000000000000000000000000000000000000000000900463ffffffff1681565b611eee610f27612c0f565b611f295760405162461bcd60e51b81526004018080602001828103825260308152602001806147eb6030913960400191505060405180910390fd5b600c546001600160a01b031615611f715760405162461bcd60e51b81526004018080602001828103825260278152602001806149056027913960400191505060405180910390fd5b600c80547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b600b5460009060ff1615612006576040805162461bcd60e51b815260206004820152601060248201527f5061757361626c653a2070617573656400000000000000000000000000000000604482015290519081900360640190fd5b610f13838361323e565b600b5460009060ff161561206b576040805162461bcd60e51b815260206004820152601060248201527f5061757361626c653a2070617573656400000000000000000000000000000000604482015290519081900360640190fd5b610f1383836132ac565b612080610f27612c0f565b6120bb5760405162461bcd60e51b81526004018080602001828103825260308152602001806147eb6030913960400191505060405180910390fd5b600f80547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b03838116919091179182905560408051929091168252517fd4b6a61f2df2585993968cce1ab1edbec92c9c77c7bb81172643b44c42788beb916020908290030190a150565b600061120461213a6110fd565b612142611cf4565b9063ffffffff6132c016565b612159610f27612c0f565b6121945760405162461bcd60e51b81526004018080602001828103825260308152602001806147eb6030913960400191505060405180910390fd5b600f805463ffffffff8316750100000000000000000000000000000000000000000081027fffffffffffffff00000000ffffffffffffffffffffffffffffffffffffffffff60ff87167401000000000000000000000000000000000000000081027fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff90951694909417161790925560408051918252602082019290925281517f460fa919625630f734b5d86356a2511f134b6df313c793ca09e0399de8d933a0929181900390910190a15050565b6001600160a01b03811660009081526008602052604081205463ffffffff168061228d5760006122bf565b6001600160a01b038316600090815260076020908152604080832063ffffffff60001986011684529091529020600101545b9392505050565b600060405180806146b960439139604301905060405180910390206122e9610e18565b805190602001206122f861331a565b3060405160200180858152602001848152602001838152602001826001600160a01b03166001600160a01b031681526020019450505050506040516020818303038152906040528051906020012090506000604051808061492c603a91396040805191829003603a0182206020808401919091526001600160a01b038c1683830152606083018b905260808084018b90528251808503909101815260a0840183528051908201207f190100000000000000000000000000000000000000000000000000000000000060c085015260c2840187905260e2808501829052835180860390910181526101028501808552815191840191909120600091829052610122860180865281905260ff8c1661014287015261016286018b905261018286018a9052935191965092945091926001926101a280830193927fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08301929081900390910190855afa15801561246f573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe001519150506001600160a01b0381166124df5760405162461bcd60e51b815260040180806020018281038252603181526020018061459e6031913960400191505060405180910390fd5b6001600160a01b0381166000908152600960205260409020805460018101909155891461253d5760405162461bcd60e51b815260040180806020018281038252602d815260200180614896602d913960400191505060405180910390fd5b8742111561257c5760405162461bcd60e51b81526004018080602001828103825260318152602001806147ba6031913960400191505060405180910390fd5b612586818b612df6565b50505050505050505050565b600080600c60009054906101000a90046001600160a01b03166001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b1580156125e357600080fd5b505afa1580156125f7573d6000803e3d6000fd5b505050506040513d602081101561260d57600080fd5b50519050600061144d61212d565b600f5474010000000000000000000000000000000000000000900460ff1681565b600f54790100000000000000000000000000000000000000000000000000900463ffffffff1681565b6000612672610f27612c0f565b6126ad5760405162461bcd60e51b81526004018080602001828103825260308152602001806147eb6030913960400191505060405180910390fd5b6001600160a01b03831630141561270b576040805162461bcd60e51b815260206004820152601360248201527f63616e6e6f7420776974686472617720466f6700000000000000000000000000604482015290519081900360640190fd5b600c546001600160a01b038481169116141561276e576040805162461bcd60e51b815260206004820152601660248201527f63616e6e6f7420776974686472617720464f47204c5000000000000000000000604482015290519081900360640190fd5b604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905184916000916001600160a01b038416916370a08231916024808301926020929190829003018186803b1580156127d257600080fd5b505afa1580156127e6573d6000803e3d6000fd5b505050506040513d60208110156127fc57600080fd5b5051604080517fa9059cbb0000000000000000000000000000000000000000000000000000000081526001600160a01b0387811660048301526024820184905291519293509084169163a9059cbb916044808201926020929091908290030181600087803b15801561286d57600080fd5b505af1158015612881573d6000803e3d6000fd5b505050506040513d602081101561289757600080fd5b505195945050505050565b600c54604080517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b15801561290657600080fd5b505afa15801561291a573d6000803e3d6000fd5b505050506040513d602081101561293057600080fd5b50519050806129705760405162461bcd60e51b81526004018080602001828103825260428152602001806148c36042913960600191505060405180910390fd5b600c54604080517fa9059cbb0000000000000000000000000000000000000000000000000000000081526000600482018190526024820185905291516001600160a01b039093169263a9059cbb92604480840193602093929083900390910190829087803b1580156129e157600080fd5b505af11580156129f5573d6000803e3d6000fd5b505050506040513d6020811015612a0b57600080fd5b50506040805182815290517f5ad60a3809edf57c6c3e72fca26945b0cbce9e4a2d6aea167e35fc04c043bb9e9181900360200190a150565b6117d2612a4f306117ec565b61164a565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b601054640100000000900463ffffffff1681565b6117d2612a9e612c0f565b61331e565b60405180603a61492c8239603a019050604051809103902081565b612ac9610f27612c0f565b612b045760405162461bcd60e51b81526004018080602001828103825260308152602001806147eb6030913960400191505060405180910390fd5b600d80547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b03838116919091179182905560408051929091168252517f6b805866760940a00a9ab81cab8fd18cb26b9342791ad5a21476b0b215bd1973916020908290030190a150565b612b81610f27612c0f565b612bbc5760405162461bcd60e51b81526004018080602001828103825260308152602001806147eb6030913960400191505060405180910390fd5b61158f81613366565b60076020908152600092835260408084209091529082529020805460019091015463ffffffff9091169082565b6000612c06612bff612c0f565b84846133ae565b50600192915050565b3390565b6000612c2084848461349a565b612c9684612c2c612c0f565b612c9185604051806060016040528060288152602001614770602891396001600160a01b038a16600090815260016020526040812090612c6a612c0f565b6001600160a01b03168152602081019190915260400160002054919063ffffffff61359116565b6133ae565b5060019392505050565b600082612caf57506000610f16565b82820282848281612cbc57fe5b0414610f135760405162461bcd60e51b81526004018080602001828103825260218152602001806146fc6021913960400191505060405180910390fd5b6000610f1383836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613628565b6000612c06612d48612c0f565b84612c918560016000612d59612c0f565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff6132c016565b60006001600160a01b038216612dd65760405162461bcd60e51b81526004018080602001828103825260228152602001806147986022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b6001600160a01b0380831660009081526006602052604081205490911690612e1d846117ec565b6001600160a01b0385811660008181526006602052604080822080547fffffffffffffffffffffffff000000000000000000000000000000000000000016898616908117909155905194955093928616927f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a4612e9d82848361368d565b50505050565b6000612eb682600263ffffffff612cf916565b90506000612eca838363ffffffff612f3616565b905047612ed6836137d6565b6000612ee8478363ffffffff612f3616565b9050612ef483826139b8565b604080518481526020810183905281517f1ac88120e7cb0c1102895c679e94394ce3fb63f5fc8ff9519213798ec483fbc0929181900390910190a15050505050565b6000610f1383836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613591565b6000612f8b82600263ffffffff612cf916565b90506000612f9f838363ffffffff612f3616565b905047612fab836137d6565b6000612fbd478363ffffffff612f3616565b9050612fc883613a8c565b61197f81611807565b8047612fdc826137d6565b6000612fee478363ffffffff612f3616565b9050600061300382600263ffffffff612cf916565b90506000613017838363ffffffff612f3616565b600d54604080517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015290519293506000926001600160a01b03909216916370a0823191602480820192602092909190829003018186803b15801561308157600080fd5b505afa158015613095573d6000803e3d6000fd5b505050506040513d60208110156130ab57600080fd5b505190506130b883613b43565b600d54604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905160009261315d9285926001600160a01b03909216916370a0823191602480820192602092909190829003018186803b15801561312557600080fd5b505afa158015613139573d6000803e3d6000fd5b505050506040513d602081101561314f57600080fd5b50519063ffffffff612f3616565b90506131698184613da7565b604080518281526020810185905281517fc1ab6f750af944fa07ec9d155c2b70e65c62b78f5e1ac3704bf46c153dbe23b5929181900390910190a15050505050505050565b6131bf600a8263ffffffff613f7f16565b6040516001600160a01b038216907fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e90600090a250565b613207600a8263ffffffff61400416565b6040516001600160a01b038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b6000612c0661324b612c0f565b84612c91856040518060600160405280602581526020016149666025913960016000613275612c0f565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff61359116565b6000612c066132b9612c0f565b848461349a565b600082820183811015610f13576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b4690565b61332f60128263ffffffff613f7f16565b6040516001600160a01b038216907f3525e22824a8a7df2c9a6029941c824cf95b6447f1e13d5128fd3826d35afe8b90600090a250565b61337760128263ffffffff61400416565b6040516001600160a01b038216907f47d1c22a25bb3a5d4e481b9b1e6944c2eade3181a0a20b495ed61d35b5323f2490600090a250565b6001600160a01b0383166133f35760405162461bcd60e51b81526004018080602001828103825260248152602001806148726024913960400191505060405180910390fd5b6001600160a01b0382166134385760405162461bcd60e51b81526004018080602001828103825260228152602001806145cf6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b600b5460ff16156134f2576040805162461bcd60e51b815260206004820152601060248201527f5061757361626c653a2070617573656400000000000000000000000000000000604482015290519081900360640190fd5b6001600160a01b038316301461358157600f5460009061354e90839074010000000000000000000000000000000000000000810460ff16907501000000000000000000000000000000000000000000900463ffffffff166110bd565b90506000613562838363ffffffff612f3616565b905061356f8530846140a3565b61357a8585836140a3565b505061358c565b61358c8383836140a3565b505050565b600081848411156136205760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156135e55781810151838201526020016135cd565b50505050905090810190601f1680156136125780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600081836136775760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156135e55781810151838201526020016135cd565b50600083858161368357fe5b0495945050505050565b816001600160a01b0316836001600160a01b0316141580156136af5750600081115b1561358c576001600160a01b03831615613747576001600160a01b03831660009081526008602052604081205463ffffffff1690816136ef576000613721565b6001600160a01b038516600090815260076020908152604080832063ffffffff60001987011684529091529020600101545b90506000613735828563ffffffff612f3616565b9050613743868484846140e0565b5050505b6001600160a01b0382161561358c576001600160a01b03821660009081526008602052604081205463ffffffff1690816137825760006137b4565b6001600160a01b038416600090815260076020908152604080832063ffffffff60001987011684529091529020600101545b905060006137c8828563ffffffff6132c016565b90506117ba858484846140e0565b6040805160028082526060808301845292602083019080388339019050509050308160008151811061380457fe5b60200260200101906001600160a01b031690816001600160a01b031681525050600b60019054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561387257600080fd5b505afa158015613886573d6000803e3d6000fd5b505050506040513d602081101561389c57600080fd5b50518151829060019081106138ad57fe5b6001600160a01b039283166020918202929092010152600b546138d8913091610100900416846133ae565b600b546040517f791ac947000000000000000000000000000000000000000000000000000000008152600481018481526000602483018190523060648401819052426084850181905260a060448601908152875160a487015287516101009097046001600160a01b03169663791ac947968a968a9594939092909160c40190602087810191028083838b5b8381101561397b578181015183820152602001613963565b505050509050019650505050505050600060405180830381600087803b1580156139a457600080fd5b505af11580156117ba573d6000803e3d6000fd5b600b546139d590309061010090046001600160a01b0316846133ae565b600b54604080517ff305d719000000000000000000000000000000000000000000000000000000008152306004820181905260248201869052600060448301819052606483015260848201524260a482015290516101009092046001600160a01b03169163f305d71991849160c480830192606092919082900301818588803b158015613a6157600080fd5b505af1158015613a75573d6000803e3d6000fd5b50505050506040513d6060811015612e9d57600080fd5b600c54613aa49030906001600160a01b0316836140a3565b600c60009054906101000a90046001600160a01b03166001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015613af457600080fd5b505af1158015613b08573d6000803e3d6000fd5b50506040805184815290517ff7d7cccc5d43bccbb3cfa5d9f4b787fc2efdbd284e748d91b810770cd22a1c709350908190036020019150a150565b6040805160028082526060808301845292602083019080388339019050509050600b60019054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015613bb157600080fd5b505afa158015613bc5573d6000803e3d6000fd5b505050506040513d6020811015613bdb57600080fd5b505181518290600090613bea57fe5b6001600160a01b039283166020918202929092010152600d54825191169082906001908110613c1557fe5b6001600160a01b03928316602091820292909201810191909152600f54600b54604080517f095ea7b3000000000000000000000000000000000000000000000000000000008152610100909204851660048301526024820187905251919093169263095ea7b39260448083019391928290030181600087803b158015613c9a57600080fd5b505af1158015613cae573d6000803e3d6000fd5b505050506040513d6020811015613cc457600080fd5b5050600b546040517fb6f9de95000000000000000000000000000000000000000000000000000000008152600060048201818152306044840181905242606485018190526080602486019081528751608487015287516101009097046001600160a01b03169663b6f9de95968a96958a9594939092909160a40190602087810191028083838b5b83811015613d63578181015183820152602001613d4b565b50505050905001955050505050506000604051808303818588803b158015613d8a57600080fd5b505af1158015613d9e573d6000803e3d6000fd5b50505050505050565b600f54600b54604080517f095ea7b30000000000000000000000000000000000000000000000000000000081526101009092046001600160a01b03908116600484015260248301859052905192169163095ea7b3916044808201926020929091908290030181600087803b158015613e1e57600080fd5b505af1158015613e32573d6000803e3d6000fd5b505050506040513d6020811015613e4857600080fd5b5050600d54600b54604080517f095ea7b30000000000000000000000000000000000000000000000000000000081526101009092046001600160a01b03908116600484015260248301869052905192169163095ea7b3916044808201926020929091908290030181600087803b158015613ec157600080fd5b505af1158015613ed5573d6000803e3d6000fd5b505050506040513d6020811015613eeb57600080fd5b5050600b54600d54604080517ff305d7190000000000000000000000000000000000000000000000000000000081526001600160a01b0392831660048201526024810186905260006044820181905260648201523060848201524260a482015290516101009093049091169163f305d71991849160c480830192606092919082900301818588803b158015613a6157600080fd5b613f898282612d8f565b613fc45760405162461bcd60e51b81526004018080602001828103825260218152602001806146596021913960400191505060405180910390fd5b6001600160a01b031660009081526020919091526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055565b61400e8282612d8f565b15614060576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b031660009081526020919091526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b6001600160a01b038084166000908152600660205260408082205485841683529120546140d59291821691168361368d565b61358c838383614260565b6000614104436040518060600160405280603f815260200161467a603f91396143bc565b905060008463ffffffff1611801561414d57506001600160a01b038516600090815260076020908152604080832063ffffffff6000198901811685529252909120548282169116145b1561418a576001600160a01b038516600090815260076020908152604080832063ffffffff60001989011684529091529020600101829055614216565b60408051808201825263ffffffff808416825260208083018681526001600160a01b038a166000818152600784528681208b861682528452868120955186549086167fffffffffffffffffffffffffffffffffffffffffffffffffffffffff00000000918216178755925160019687015590815260089092529390208054928801909116919092161790555b604080518481526020810184905281516001600160a01b038816927fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724928290030190a25050505050565b6001600160a01b0383166142a55760405162461bcd60e51b815260040180806020018281038252602581526020018061481b6025913960400191505060405180910390fd5b6001600160a01b0382166142ea5760405162461bcd60e51b81526004018080602001828103825260238152602001806145226023913960400191505060405180910390fd5b61432d81604051806060016040528060268152602001614633602691396001600160a01b038616600090815260208190526040902054919063ffffffff61359116565b6001600160a01b038085166000908152602081905260408082209390935590841681522054614362908263ffffffff6132c016565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008164010000000084106144125760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156135e55781810151838201526020016135cd565b509192915050565b604080518082019091526000808252602082015290565b6001600160a01b03821661448c576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b60025461449f908263ffffffff6132c016565b6002556001600160a01b0382166000908152602081905260409020546144cb908263ffffffff6132c016565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a3505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373466f67546f6b656e3a3a736574556e69737761705632526f757465723a20616c726561647920736574506175736572526f6c653a2063616c6c657220646f6573206e6f742068617665207468652050617573657220726f6c654552433230476f7665726e616e63653a3a64656c656761746542795369673a20696e76616c6964207369676e617475726545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332305472616e736665724c69717569646974794c6f636b3a3a6c6f636b4c69717569646974793a206c6f636b20616d6f756e742063616e6e6f74206265203045524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c654552433230476f7665726e616e63653a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d62657220657863656564732033322062697473454950373132446f6d61696e28737472696e67206e616d652c75696e7432353620636861696e49642c6164647265737320766572696679696e67436f6e747261637429536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332305472616e736665724c69717569646974794c6f636b3a3a6c6f636b4c69717569646974793a206c6f636b20616d6f756e7420686967686572207468616e206c6f636b61626c652062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365526f6c65733a206163636f756e7420697320746865207a65726f20616464726573734552433230476f7665726e616e63653a3a64656c656761746542795369673a207369676e617475726520657870697265645369676e6572526f6c653a2063616c6c657220646f6573206e6f74206861766520746865205369676e657220726f6c6545524332303a207472616e736665722066726f6d20746865207a65726f20616464726573734552433230476f7665726e616e63653a3a6765745072696f72566f7465733a206e6f74207965742064657465726d696e656445524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734552433230476f7665726e616e63653a3a64656c656761746542795369673a20696e76616c6964206e6f6e636545524332305472616e736665724c69717569646974794c6f636b3a3a6275726e4c69717569646974793a206275726e20616d6f756e742063616e6e6f742062652030466f67546f6b656e3a3a736574556e69737761705632506169723a20616c72656164792073657444656c65676174696f6e28616464726573732064656c6567617465652c75696e74323536206e6f6e63652c75696e74323536206578706972792945524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa265627a7a723158201b0992ca10100ad95683829731942c2390f93568b9a70830df923881fc93e0ae64736f6c634300051100324552433230476f7665726e616e63653a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d62657220657863656564732033322062697473526f6c65733a206163636f756e7420697320746865207a65726f2061646472657373

Deployed Bytecode

0x6080604052600436106103b85760003560e01c806371db5869116101f2578063b47ba5281161010d578063db647b76116100a0578063e7a324dc1161006f578063e7a324dc14610d3e578063eb107e2014610d53578063eb12d61e14610d86578063f1127ed814610db9576103b8565b8063db647b7614610cc4578063dd62ed3e14610cd9578063e4f5a6ab14610d14578063e5c8b03d14610d29576103b8565b8063cc0f1786116100dc578063cc0f178614610c4a578063d19b93f114610c5f578063d6aeb28c14610c74578063da942cbf14610caf576103b8565b8063b47ba52814610b75578063b4b5ea5714610bae578063c3cda52014610be1578063ca5c7b9114610c35576103b8565b806399494abd11610185578063a457c2d711610154578063a457c2d714610abb578063a9059cbb14610af4578063a96e242314610b2d578063b439824414610b60576103b8565b806399494abd14610a265780639d76ea5814610a5e578063a001ecdd14610a73578063a29a608914610a88576103b8565b806382dc1ec4116101c157806382dc1ec4146109b45780638456cb59146109e7578063858750ab146109fc57806395d89b4114610a11576103b8565b806371db5869146108eb578063782d6fe1146109155780637df73e271461094e5780637ecebe0014610981576103b8565b806339509351116102e2578063587cde1e116102755780636a7eed50116102445780636a7eed50146108465780636ef8d66d146108705780636fcfff451461088557806370a08231146108b8576103b8565b8063587cde1e1461079b5780635c19a95c146107ce5780635c975abb146108015780635f17e52314610816576103b8565b80634c3aad0f116102b15780634c3aad0f146107295780634f0e0ef31461073e57806355d0a1d0146107535780635675688d14610768576103b8565b806339509351146106935780633f4ba83a146106cc57806346fbf68e146106e157806349bd5a5e14610714576103b8565b80632171caa41161035a5780632898cafa116103295780632898cafa1461062957806328bec02b1461063e5780632d87ea6014610653578063313ce56714610668576103b8565b80632171caa41461054657806323b872dd1461057457806326dacb40146105b757806327e235e3146105f6576103b8565b80631694505e116103965780631694505e146104c457806318160ddd146104f55780631ec3ae291461051c57806320606b7014610531576103b8565b806306fdde03146103ba578063095ea7b3146104445780631419841d14610491575b005b3480156103c657600080fd5b506103cf610e18565b6040805160208082528351818301528351919283929083019185019080838360005b838110156104095781810151838201526020016103f1565b50505050905090810190601f1680156104365780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561045057600080fd5b5061047d6004803603604081101561046757600080fd5b506001600160a01b038135169060200135610eae565b604080519115158252519081900360200190f35b34801561049d57600080fd5b506103b8600480360360208110156104b457600080fd5b50356001600160a01b0316610f1c565b3480156104d057600080fd5b506104d9610ff3565b604080516001600160a01b039092168252519081900360200190f35b34801561050157600080fd5b5061050a611007565b60408051918252519081900360200190f35b34801561052857600080fd5b506104d961100d565b34801561053d57600080fd5b5061050a61101c565b34801561055257600080fd5b5061055b611037565b6040805163ffffffff9092168252519081900360200190f35b34801561058057600080fd5b5061047d6004803603606081101561059757600080fd5b506001600160a01b0381358116916020810135909116906040013561104f565b3480156105c357600080fd5b5061050a600480360360608110156105da57600080fd5b50803590602081013560ff16906040013563ffffffff166110bd565b34801561060257600080fd5b5061050a6004803603602081101561061957600080fd5b50356001600160a01b03166110eb565b34801561063557600080fd5b5061050a6110fd565b34801561064a57600080fd5b5061050a611195565b34801561065f57600080fd5b5061050a6111f9565b34801561067457600080fd5b5061067d611209565b6040805160ff9092168252519081900360200190f35b34801561069f57600080fd5b5061047d600480360360408110156106b657600080fd5b506001600160a01b038135169060200135611212565b3480156106d857600080fd5b506103b8611277565b3480156106ed57600080fd5b5061047d6004803603602081101561070457600080fd5b50356001600160a01b0316611387565b34801561072057600080fd5b506104d961139a565b34801561073557600080fd5b5061055b6113a9565b34801561074a57600080fd5b506104d96113b5565b34801561075f57600080fd5b5061050a6113c4565b34801561077457600080fd5b506103b86004803603602081101561078b57600080fd5b50356001600160a01b03166114ac565b3480156107a757600080fd5b506104d9600480360360208110156107be57600080fd5b50356001600160a01b0316611567565b3480156107da57600080fd5b506103b8600480360360208110156107f157600080fd5b50356001600160a01b0316611585565b34801561080d57600080fd5b5061047d611592565b34801561082257600080fd5b506103b86004803603602081101561083957600080fd5b503563ffffffff1661159b565b34801561085257600080fd5b506103b86004803603602081101561086957600080fd5b503561164a565b34801561087c57600080fd5b506103b86117c2565b34801561089157600080fd5b5061055b600480360360208110156108a857600080fd5b50356001600160a01b03166117d4565b3480156108c457600080fd5b5061050a600480360360208110156108db57600080fd5b50356001600160a01b03166117ec565b3480156108f757600080fd5b506103b86004803603602081101561090e57600080fd5b5035611807565b34801561092157600080fd5b5061050a6004803603604081101561093857600080fd5b506001600160a01b038135169060200135611986565b34801561095a57600080fd5b5061047d6004803603602081101561097157600080fd5b50356001600160a01b0316611b8e565b34801561098d57600080fd5b5061050a600480360360208110156109a457600080fd5b50356001600160a01b0316611ba1565b3480156109c057600080fd5b506103b8600480360360208110156109d757600080fd5b50356001600160a01b0316611bb3565b3480156109f357600080fd5b506103b8611c02565b348015610a0857600080fd5b5061050a611cf4565b348015610a1d57600080fd5b506103cf611d58565b348015610a3257600080fd5b506103b860048036036040811015610a4957600080fd5b5063ffffffff81358116916020013516611db9565b348015610a6a57600080fd5b506104d9611eaf565b348015610a7f57600080fd5b5061055b611ebe565b348015610a9457600080fd5b506103b860048036036020811015610aab57600080fd5b50356001600160a01b0316611ee3565b348015610ac757600080fd5b5061047d60048036036040811015610ade57600080fd5b506001600160a01b038135169060200135611fab565b348015610b0057600080fd5b5061047d60048036036040811015610b1757600080fd5b506001600160a01b038135169060200135612010565b348015610b3957600080fd5b506103b860048036036020811015610b5057600080fd5b50356001600160a01b0316612075565b348015610b6c57600080fd5b5061050a61212d565b348015610b8157600080fd5b506103b860048036036040811015610b9857600080fd5b50803560ff16906020013563ffffffff1661214e565b348015610bba57600080fd5b5061050a60048036036020811015610bd157600080fd5b50356001600160a01b0316612262565b348015610bed57600080fd5b506103b8600480360360c0811015610c0457600080fd5b506001600160a01b038135169060208101359060408101359060ff6060820135169060808101359060a001356122c6565b348015610c4157600080fd5b5061050a612592565b348015610c5657600080fd5b5061067d61261b565b348015610c6b57600080fd5b5061055b61263c565b348015610c8057600080fd5b5061047d60048036036040811015610c9757600080fd5b506001600160a01b0381358116916020013516612665565b348015610cbb57600080fd5b506103b86128a2565b348015610cd057600080fd5b506103b8612a43565b348015610ce557600080fd5b5061050a60048036036040811015610cfc57600080fd5b506001600160a01b0381358116916020013516612a54565b348015610d2057600080fd5b5061055b612a7f565b348015610d3557600080fd5b506103b8612a93565b348015610d4a57600080fd5b5061050a612aa3565b348015610d5f57600080fd5b506103b860048036036020811015610d7657600080fd5b50356001600160a01b0316612abe565b348015610d9257600080fd5b506103b860048036036020811015610da957600080fd5b50356001600160a01b0316612b76565b348015610dc557600080fd5b50610df860048036036040811015610ddc57600080fd5b5080356001600160a01b0316906020013563ffffffff16612bc5565b6040805163ffffffff909316835260208301919091528051918290030190f35b60038054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610ea45780601f10610e7957610100808354040283529160200191610ea4565b820191906000526020600020905b815481529060010190602001808311610e8757829003601f168201915b5050505050905090565b600b5460009060ff1615610f09576040805162461bcd60e51b815260206004820152601060248201527f5061757361626c653a2070617573656400000000000000000000000000000000604482015290519081900360640190fd5b610f138383612bf2565b90505b92915050565b610f2c610f27612c0f565b611b8e565b610f675760405162461bcd60e51b81526004018080602001828103825260308152602001806147eb6030913960400191505060405180910390fd5b600b5461010090046001600160a01b031615610fb45760405162461bcd60e51b81526004018080602001828103825260298152602001806145456029913960400191505060405180910390fd5b600b80546001600160a01b03909216610100027fffffffffffffffffffffff0000000000000000000000000000000000000000ff909216919091179055565b600b5461010090046001600160a01b031681565b60025490565b600e546001600160a01b031681565b6040518060436146b982396043019050604051809103902081565b60105468010000000000000000900463ffffffff1681565b600b5460009060ff16156110aa576040805162461bcd60e51b815260206004820152601060248201527f5061757361626c653a2070617573656400000000000000000000000000000000604482015290519081900360640190fd5b6110b5848484612c13565b949350505050565b60006110b5600260ff851601600a0a6110df8663ffffffff80871690612ca016565b9063ffffffff612cf916565b60116020526000908152604090205481565b600c54604080517f70a08231000000000000000000000000000000000000000000000000000000008152600060048201819052915191926001600160a01b0316916370a0823191602480820192602092909190829003018186803b15801561116457600080fd5b505afa158015611178573d6000803e3d6000fd5b505050506040513d602081101561118e57600080fd5b5051905090565b600e54604080517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b15801561116457600080fd5b6000611204306117ec565b905090565b60055460ff1690565b600b5460009060ff161561126d576040805162461bcd60e51b815260206004820152601060248201527f5061757361626c653a2070617573656400000000000000000000000000000000604482015290519081900360640190fd5b610f138383612d3b565b611287611282612c0f565b611387565b6112c25760405162461bcd60e51b815260040180806020018281038252603081526020018061456e6030913960400191505060405180910390fd5b600b5460ff16611319576040805162461bcd60e51b815260206004820152601460248201527f5061757361626c653a206e6f7420706175736564000000000000000000000000604482015290519081900360640190fd5b600b80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61136a612c0f565b604080516001600160a01b039092168252519081900360200190a1565b6000610f16600a8363ffffffff612d8f16565b600c546001600160a01b031681565b60105463ffffffff1681565b600f546001600160a01b031681565b600080600c60009054906101000a90046001600160a01b03166001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b15801561141557600080fd5b505afa158015611429573d6000803e3d6000fd5b505050506040513d602081101561143f57600080fd5b50519050600061144d6110fd565b9050600061146a836110df8464e8d4a5100063ffffffff612ca016565b600c54909150600090611485906001600160a01b03166117ec565b905060006114a264e8d4a510006110df848663ffffffff612ca016565b9550505050505090565b6114b7610f27612c0f565b6114f25760405162461bcd60e51b81526004018080602001828103825260308152602001806147eb6030913960400191505060405180910390fd5b600e80547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0383811691909117909155600d546040805191909216815290517f06c5c102bc0fb3e459e4385f59397c86c78ebb61772f0b82e4fe630fe8b68246916020908290030190a150565b6001600160a01b039081166000908152600660205260409020541690565b61158f3382612df6565b50565b600b5460ff1690565b6115a6610f27612c0f565b6115e15760405162461bcd60e51b81526004018080602001828103825260308152602001806147eb6030913960400191505060405180910390fd5b6010805463ffffffff83167fffffffffffffffffffffffffffffffffffffffffffffffffffffffff00000000909116811790915560408051918252517fe30690a9823f6f2fa1cff7880b59f3764efb55bb56097a17723282e4c2d1c24b9181900360200190a150565b611653306117ec565b8111156116915760405162461bcd60e51b815260040180806020018281038252605381526020018061471d6053913960600191505060405180910390fd5b806116cd5760405162461bcd60e51b81526004018080602001828103825260428152602001806145f16042913960600191505060405180910390fd5b600f5460105460009161170b91849174010000000000000000000000000000000000000000900460ff1690640100000000900463ffffffff166110bd565b905061171681612ea3565b6000611728838363ffffffff612f3616565b600f546010549192506000916117629184917401000000000000000000000000000000000000000090910460ff169063ffffffff166110bd565b905061176d81612f78565b600061177f838363ffffffff612f3616565b905060006117af82600f60149054906101000a900460ff16601060089054906101000a900463ffffffff166110bd565b90506117ba81612fd1565b505050505050565b6117d26117cd612c0f565b6131ae565b565b60086020526000908152604090205463ffffffff1681565b6001600160a01b031660009081526020819052604090205490565b600f60009054906101000a90046001600160a01b03166001600160a01b031663d0e30db0826040518263ffffffff1660e01b81526004016000604051808303818588803b15801561185757600080fd5b505af115801561186b573d6000803e3d6000fd5b5050600f54600c54604080517fa9059cbb0000000000000000000000000000000000000000000000000000000081526001600160a01b03928316600482015260248101889052905191909216945063a9059cbb9350604480830193506020928290030181600087803b1580156118e057600080fd5b505af11580156118f4573d6000803e3d6000fd5b505050506040513d602081101561190a57600080fd5b5050600c54604080517ffff6cae900000000000000000000000000000000000000000000000000000000815290516001600160a01b039092169163fff6cae99160048082019260009290919082900301818387803b15801561196b57600080fd5b505af115801561197f573d6000803e3d6000fd5b5050505050565b60004382106119c65760405162461bcd60e51b81526004018080602001828103825260328152602001806148406032913960400191505060405180910390fd5b6001600160a01b03831660009081526008602052604090205463ffffffff16806119f4576000915050610f16565b6001600160a01b038416600090815260076020908152604080832063ffffffff600019860181168552925290912054168310611a63576001600160a01b03841660009081526007602090815260408083206000199490940163ffffffff16835292905220600101549050610f16565b6001600160a01b038416600090815260076020908152604080832083805290915290205463ffffffff16831015611a9e576000915050610f16565b600060001982015b8163ffffffff168163ffffffff161115611b5757600282820363ffffffff16048103611ad061441a565b506001600160a01b038716600090815260076020908152604080832063ffffffff808616855290835292819020815180830190925280549093168082526001909301549181019190915290871415611b3257602001519450610f169350505050565b805163ffffffff16871115611b4957819350611b50565b6001820392505b5050611aa6565b506001600160a01b038516600090815260076020908152604080832063ffffffff9094168352929052206001015491505092915050565b6000610f1660128363ffffffff612d8f16565b60096020526000908152604090205481565b611bbe611282612c0f565b611bf95760405162461bcd60e51b815260040180806020018281038252603081526020018061456e6030913960400191505060405180910390fd5b61158f816131f6565b611c0d611282612c0f565b611c485760405162461bcd60e51b815260040180806020018281038252603081526020018061456e6030913960400191505060405180910390fd5b600b5460ff1615611ca0576040805162461bcd60e51b815260206004820152601060248201527f5061757361626c653a2070617573656400000000000000000000000000000000604482015290519081900360640190fd5b600b80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861136a612c0f565b600c54604080517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b15801561116457600080fd5b60048054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610ea45780601f10610e7957610100808354040283529160200191610ea4565b611dc4610f27612c0f565b611dff5760405162461bcd60e51b81526004018080602001828103825260308152602001806147eb6030913960400191505060405180910390fd5b601080547fffffffffffffffffffffffffffffffffffffffffffffffff00000000ffffffff1664010000000063ffffffff858116918202929092177fffffffffffffffffffffffffffffffffffffffff00000000ffffffffffffffff16680100000000000000009285169283021790925560408051928352602083019190915280517f7f5ee2cd301347ace459683b3451ff4afba9687d0be61feaa95490db46cb4e619281900390910190a15050565b600d546001600160a01b031681565b600f547501000000000000000000000000000000000000000000900463ffffffff1681565b611eee610f27612c0f565b611f295760405162461bcd60e51b81526004018080602001828103825260308152602001806147eb6030913960400191505060405180910390fd5b600c546001600160a01b031615611f715760405162461bcd60e51b81526004018080602001828103825260278152602001806149056027913960400191505060405180910390fd5b600c80547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b600b5460009060ff1615612006576040805162461bcd60e51b815260206004820152601060248201527f5061757361626c653a2070617573656400000000000000000000000000000000604482015290519081900360640190fd5b610f13838361323e565b600b5460009060ff161561206b576040805162461bcd60e51b815260206004820152601060248201527f5061757361626c653a2070617573656400000000000000000000000000000000604482015290519081900360640190fd5b610f1383836132ac565b612080610f27612c0f565b6120bb5760405162461bcd60e51b81526004018080602001828103825260308152602001806147eb6030913960400191505060405180910390fd5b600f80547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b03838116919091179182905560408051929091168252517fd4b6a61f2df2585993968cce1ab1edbec92c9c77c7bb81172643b44c42788beb916020908290030190a150565b600061120461213a6110fd565b612142611cf4565b9063ffffffff6132c016565b612159610f27612c0f565b6121945760405162461bcd60e51b81526004018080602001828103825260308152602001806147eb6030913960400191505060405180910390fd5b600f805463ffffffff8316750100000000000000000000000000000000000000000081027fffffffffffffff00000000ffffffffffffffffffffffffffffffffffffffffff60ff87167401000000000000000000000000000000000000000081027fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff90951694909417161790925560408051918252602082019290925281517f460fa919625630f734b5d86356a2511f134b6df313c793ca09e0399de8d933a0929181900390910190a15050565b6001600160a01b03811660009081526008602052604081205463ffffffff168061228d5760006122bf565b6001600160a01b038316600090815260076020908152604080832063ffffffff60001986011684529091529020600101545b9392505050565b600060405180806146b960439139604301905060405180910390206122e9610e18565b805190602001206122f861331a565b3060405160200180858152602001848152602001838152602001826001600160a01b03166001600160a01b031681526020019450505050506040516020818303038152906040528051906020012090506000604051808061492c603a91396040805191829003603a0182206020808401919091526001600160a01b038c1683830152606083018b905260808084018b90528251808503909101815260a0840183528051908201207f190100000000000000000000000000000000000000000000000000000000000060c085015260c2840187905260e2808501829052835180860390910181526101028501808552815191840191909120600091829052610122860180865281905260ff8c1661014287015261016286018b905261018286018a9052935191965092945091926001926101a280830193927fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08301929081900390910190855afa15801561246f573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe001519150506001600160a01b0381166124df5760405162461bcd60e51b815260040180806020018281038252603181526020018061459e6031913960400191505060405180910390fd5b6001600160a01b0381166000908152600960205260409020805460018101909155891461253d5760405162461bcd60e51b815260040180806020018281038252602d815260200180614896602d913960400191505060405180910390fd5b8742111561257c5760405162461bcd60e51b81526004018080602001828103825260318152602001806147ba6031913960400191505060405180910390fd5b612586818b612df6565b50505050505050505050565b600080600c60009054906101000a90046001600160a01b03166001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b1580156125e357600080fd5b505afa1580156125f7573d6000803e3d6000fd5b505050506040513d602081101561260d57600080fd5b50519050600061144d61212d565b600f5474010000000000000000000000000000000000000000900460ff1681565b600f54790100000000000000000000000000000000000000000000000000900463ffffffff1681565b6000612672610f27612c0f565b6126ad5760405162461bcd60e51b81526004018080602001828103825260308152602001806147eb6030913960400191505060405180910390fd5b6001600160a01b03831630141561270b576040805162461bcd60e51b815260206004820152601360248201527f63616e6e6f7420776974686472617720466f6700000000000000000000000000604482015290519081900360640190fd5b600c546001600160a01b038481169116141561276e576040805162461bcd60e51b815260206004820152601660248201527f63616e6e6f7420776974686472617720464f47204c5000000000000000000000604482015290519081900360640190fd5b604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905184916000916001600160a01b038416916370a08231916024808301926020929190829003018186803b1580156127d257600080fd5b505afa1580156127e6573d6000803e3d6000fd5b505050506040513d60208110156127fc57600080fd5b5051604080517fa9059cbb0000000000000000000000000000000000000000000000000000000081526001600160a01b0387811660048301526024820184905291519293509084169163a9059cbb916044808201926020929091908290030181600087803b15801561286d57600080fd5b505af1158015612881573d6000803e3d6000fd5b505050506040513d602081101561289757600080fd5b505195945050505050565b600c54604080517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b15801561290657600080fd5b505afa15801561291a573d6000803e3d6000fd5b505050506040513d602081101561293057600080fd5b50519050806129705760405162461bcd60e51b81526004018080602001828103825260428152602001806148c36042913960600191505060405180910390fd5b600c54604080517fa9059cbb0000000000000000000000000000000000000000000000000000000081526000600482018190526024820185905291516001600160a01b039093169263a9059cbb92604480840193602093929083900390910190829087803b1580156129e157600080fd5b505af11580156129f5573d6000803e3d6000fd5b505050506040513d6020811015612a0b57600080fd5b50506040805182815290517f5ad60a3809edf57c6c3e72fca26945b0cbce9e4a2d6aea167e35fc04c043bb9e9181900360200190a150565b6117d2612a4f306117ec565b61164a565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b601054640100000000900463ffffffff1681565b6117d2612a9e612c0f565b61331e565b60405180603a61492c8239603a019050604051809103902081565b612ac9610f27612c0f565b612b045760405162461bcd60e51b81526004018080602001828103825260308152602001806147eb6030913960400191505060405180910390fd5b600d80547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b03838116919091179182905560408051929091168252517f6b805866760940a00a9ab81cab8fd18cb26b9342791ad5a21476b0b215bd1973916020908290030190a150565b612b81610f27612c0f565b612bbc5760405162461bcd60e51b81526004018080602001828103825260308152602001806147eb6030913960400191505060405180910390fd5b61158f81613366565b60076020908152600092835260408084209091529082529020805460019091015463ffffffff9091169082565b6000612c06612bff612c0f565b84846133ae565b50600192915050565b3390565b6000612c2084848461349a565b612c9684612c2c612c0f565b612c9185604051806060016040528060288152602001614770602891396001600160a01b038a16600090815260016020526040812090612c6a612c0f565b6001600160a01b03168152602081019190915260400160002054919063ffffffff61359116565b6133ae565b5060019392505050565b600082612caf57506000610f16565b82820282848281612cbc57fe5b0414610f135760405162461bcd60e51b81526004018080602001828103825260218152602001806146fc6021913960400191505060405180910390fd5b6000610f1383836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613628565b6000612c06612d48612c0f565b84612c918560016000612d59612c0f565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff6132c016565b60006001600160a01b038216612dd65760405162461bcd60e51b81526004018080602001828103825260228152602001806147986022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b6001600160a01b0380831660009081526006602052604081205490911690612e1d846117ec565b6001600160a01b0385811660008181526006602052604080822080547fffffffffffffffffffffffff000000000000000000000000000000000000000016898616908117909155905194955093928616927f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a4612e9d82848361368d565b50505050565b6000612eb682600263ffffffff612cf916565b90506000612eca838363ffffffff612f3616565b905047612ed6836137d6565b6000612ee8478363ffffffff612f3616565b9050612ef483826139b8565b604080518481526020810183905281517f1ac88120e7cb0c1102895c679e94394ce3fb63f5fc8ff9519213798ec483fbc0929181900390910190a15050505050565b6000610f1383836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613591565b6000612f8b82600263ffffffff612cf916565b90506000612f9f838363ffffffff612f3616565b905047612fab836137d6565b6000612fbd478363ffffffff612f3616565b9050612fc883613a8c565b61197f81611807565b8047612fdc826137d6565b6000612fee478363ffffffff612f3616565b9050600061300382600263ffffffff612cf916565b90506000613017838363ffffffff612f3616565b600d54604080517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015290519293506000926001600160a01b03909216916370a0823191602480820192602092909190829003018186803b15801561308157600080fd5b505afa158015613095573d6000803e3d6000fd5b505050506040513d60208110156130ab57600080fd5b505190506130b883613b43565b600d54604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905160009261315d9285926001600160a01b03909216916370a0823191602480820192602092909190829003018186803b15801561312557600080fd5b505afa158015613139573d6000803e3d6000fd5b505050506040513d602081101561314f57600080fd5b50519063ffffffff612f3616565b90506131698184613da7565b604080518281526020810185905281517fc1ab6f750af944fa07ec9d155c2b70e65c62b78f5e1ac3704bf46c153dbe23b5929181900390910190a15050505050505050565b6131bf600a8263ffffffff613f7f16565b6040516001600160a01b038216907fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e90600090a250565b613207600a8263ffffffff61400416565b6040516001600160a01b038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b6000612c0661324b612c0f565b84612c91856040518060600160405280602581526020016149666025913960016000613275612c0f565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff61359116565b6000612c066132b9612c0f565b848461349a565b600082820183811015610f13576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b4690565b61332f60128263ffffffff613f7f16565b6040516001600160a01b038216907f3525e22824a8a7df2c9a6029941c824cf95b6447f1e13d5128fd3826d35afe8b90600090a250565b61337760128263ffffffff61400416565b6040516001600160a01b038216907f47d1c22a25bb3a5d4e481b9b1e6944c2eade3181a0a20b495ed61d35b5323f2490600090a250565b6001600160a01b0383166133f35760405162461bcd60e51b81526004018080602001828103825260248152602001806148726024913960400191505060405180910390fd5b6001600160a01b0382166134385760405162461bcd60e51b81526004018080602001828103825260228152602001806145cf6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b600b5460ff16156134f2576040805162461bcd60e51b815260206004820152601060248201527f5061757361626c653a2070617573656400000000000000000000000000000000604482015290519081900360640190fd5b6001600160a01b038316301461358157600f5460009061354e90839074010000000000000000000000000000000000000000810460ff16907501000000000000000000000000000000000000000000900463ffffffff166110bd565b90506000613562838363ffffffff612f3616565b905061356f8530846140a3565b61357a8585836140a3565b505061358c565b61358c8383836140a3565b505050565b600081848411156136205760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156135e55781810151838201526020016135cd565b50505050905090810190601f1680156136125780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600081836136775760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156135e55781810151838201526020016135cd565b50600083858161368357fe5b0495945050505050565b816001600160a01b0316836001600160a01b0316141580156136af5750600081115b1561358c576001600160a01b03831615613747576001600160a01b03831660009081526008602052604081205463ffffffff1690816136ef576000613721565b6001600160a01b038516600090815260076020908152604080832063ffffffff60001987011684529091529020600101545b90506000613735828563ffffffff612f3616565b9050613743868484846140e0565b5050505b6001600160a01b0382161561358c576001600160a01b03821660009081526008602052604081205463ffffffff1690816137825760006137b4565b6001600160a01b038416600090815260076020908152604080832063ffffffff60001987011684529091529020600101545b905060006137c8828563ffffffff6132c016565b90506117ba858484846140e0565b6040805160028082526060808301845292602083019080388339019050509050308160008151811061380457fe5b60200260200101906001600160a01b031690816001600160a01b031681525050600b60019054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561387257600080fd5b505afa158015613886573d6000803e3d6000fd5b505050506040513d602081101561389c57600080fd5b50518151829060019081106138ad57fe5b6001600160a01b039283166020918202929092010152600b546138d8913091610100900416846133ae565b600b546040517f791ac947000000000000000000000000000000000000000000000000000000008152600481018481526000602483018190523060648401819052426084850181905260a060448601908152875160a487015287516101009097046001600160a01b03169663791ac947968a968a9594939092909160c40190602087810191028083838b5b8381101561397b578181015183820152602001613963565b505050509050019650505050505050600060405180830381600087803b1580156139a457600080fd5b505af11580156117ba573d6000803e3d6000fd5b600b546139d590309061010090046001600160a01b0316846133ae565b600b54604080517ff305d719000000000000000000000000000000000000000000000000000000008152306004820181905260248201869052600060448301819052606483015260848201524260a482015290516101009092046001600160a01b03169163f305d71991849160c480830192606092919082900301818588803b158015613a6157600080fd5b505af1158015613a75573d6000803e3d6000fd5b50505050506040513d6060811015612e9d57600080fd5b600c54613aa49030906001600160a01b0316836140a3565b600c60009054906101000a90046001600160a01b03166001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015613af457600080fd5b505af1158015613b08573d6000803e3d6000fd5b50506040805184815290517ff7d7cccc5d43bccbb3cfa5d9f4b787fc2efdbd284e748d91b810770cd22a1c709350908190036020019150a150565b6040805160028082526060808301845292602083019080388339019050509050600b60019054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015613bb157600080fd5b505afa158015613bc5573d6000803e3d6000fd5b505050506040513d6020811015613bdb57600080fd5b505181518290600090613bea57fe5b6001600160a01b039283166020918202929092010152600d54825191169082906001908110613c1557fe5b6001600160a01b03928316602091820292909201810191909152600f54600b54604080517f095ea7b3000000000000000000000000000000000000000000000000000000008152610100909204851660048301526024820187905251919093169263095ea7b39260448083019391928290030181600087803b158015613c9a57600080fd5b505af1158015613cae573d6000803e3d6000fd5b505050506040513d6020811015613cc457600080fd5b5050600b546040517fb6f9de95000000000000000000000000000000000000000000000000000000008152600060048201818152306044840181905242606485018190526080602486019081528751608487015287516101009097046001600160a01b03169663b6f9de95968a96958a9594939092909160a40190602087810191028083838b5b83811015613d63578181015183820152602001613d4b565b50505050905001955050505050506000604051808303818588803b158015613d8a57600080fd5b505af1158015613d9e573d6000803e3d6000fd5b50505050505050565b600f54600b54604080517f095ea7b30000000000000000000000000000000000000000000000000000000081526101009092046001600160a01b03908116600484015260248301859052905192169163095ea7b3916044808201926020929091908290030181600087803b158015613e1e57600080fd5b505af1158015613e32573d6000803e3d6000fd5b505050506040513d6020811015613e4857600080fd5b5050600d54600b54604080517f095ea7b30000000000000000000000000000000000000000000000000000000081526101009092046001600160a01b03908116600484015260248301869052905192169163095ea7b3916044808201926020929091908290030181600087803b158015613ec157600080fd5b505af1158015613ed5573d6000803e3d6000fd5b505050506040513d6020811015613eeb57600080fd5b5050600b54600d54604080517ff305d7190000000000000000000000000000000000000000000000000000000081526001600160a01b0392831660048201526024810186905260006044820181905260648201523060848201524260a482015290516101009093049091169163f305d71991849160c480830192606092919082900301818588803b158015613a6157600080fd5b613f898282612d8f565b613fc45760405162461bcd60e51b81526004018080602001828103825260218152602001806146596021913960400191505060405180910390fd5b6001600160a01b031660009081526020919091526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055565b61400e8282612d8f565b15614060576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b031660009081526020919091526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b6001600160a01b038084166000908152600660205260408082205485841683529120546140d59291821691168361368d565b61358c838383614260565b6000614104436040518060600160405280603f815260200161467a603f91396143bc565b905060008463ffffffff1611801561414d57506001600160a01b038516600090815260076020908152604080832063ffffffff6000198901811685529252909120548282169116145b1561418a576001600160a01b038516600090815260076020908152604080832063ffffffff60001989011684529091529020600101829055614216565b60408051808201825263ffffffff808416825260208083018681526001600160a01b038a166000818152600784528681208b861682528452868120955186549086167fffffffffffffffffffffffffffffffffffffffffffffffffffffffff00000000918216178755925160019687015590815260089092529390208054928801909116919092161790555b604080518481526020810184905281516001600160a01b038816927fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724928290030190a25050505050565b6001600160a01b0383166142a55760405162461bcd60e51b815260040180806020018281038252602581526020018061481b6025913960400191505060405180910390fd5b6001600160a01b0382166142ea5760405162461bcd60e51b81526004018080602001828103825260238152602001806145226023913960400191505060405180910390fd5b61432d81604051806060016040528060268152602001614633602691396001600160a01b038616600090815260208190526040902054919063ffffffff61359116565b6001600160a01b038085166000908152602081905260408082209390935590841681522054614362908263ffffffff6132c016565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008164010000000084106144125760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156135e55781810151838201526020016135cd565b509192915050565b604080518082019091526000808252602082015290565b6001600160a01b03821661448c576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b60025461449f908263ffffffff6132c016565b6002556001600160a01b0382166000908152602081905260409020546144cb908263ffffffff6132c016565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a3505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373466f67546f6b656e3a3a736574556e69737761705632526f757465723a20616c726561647920736574506175736572526f6c653a2063616c6c657220646f6573206e6f742068617665207468652050617573657220726f6c654552433230476f7665726e616e63653a3a64656c656761746542795369673a20696e76616c6964207369676e617475726545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332305472616e736665724c69717569646974794c6f636b3a3a6c6f636b4c69717569646974793a206c6f636b20616d6f756e742063616e6e6f74206265203045524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c654552433230476f7665726e616e63653a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d62657220657863656564732033322062697473454950373132446f6d61696e28737472696e67206e616d652c75696e7432353620636861696e49642c6164647265737320766572696679696e67436f6e747261637429536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332305472616e736665724c69717569646974794c6f636b3a3a6c6f636b4c69717569646974793a206c6f636b20616d6f756e7420686967686572207468616e206c6f636b61626c652062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365526f6c65733a206163636f756e7420697320746865207a65726f20616464726573734552433230476f7665726e616e63653a3a64656c656761746542795369673a207369676e617475726520657870697265645369676e6572526f6c653a2063616c6c657220646f6573206e6f74206861766520746865205369676e657220726f6c6545524332303a207472616e736665722066726f6d20746865207a65726f20616464726573734552433230476f7665726e616e63653a3a6765745072696f72566f7465733a206e6f74207965742064657465726d696e656445524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734552433230476f7665726e616e63653a3a64656c656761746542795369673a20696e76616c6964206e6f6e636545524332305472616e736665724c69717569646974794c6f636b3a3a6275726e4c69717569646974793a206275726e20616d6f756e742063616e6e6f742062652030466f67546f6b656e3a3a736574556e69737761705632506169723a20616c72656164792073657444656c65676174696f6e28616464726573732064656c6567617465652c75696e74323536206e6f6e63652c75696e74323536206578706972792945524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa265627a7a723158201b0992ca10100ad95683829731942c2390f93568b9a70830df923881fc93e0ae64736f6c63430005110032

Deployed Bytecode Sourcemap

53465:2867:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20904:83;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20904:83:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;20904:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26807:140;;8:9:-1;5:2;;;30:1;27;20:12;5:2;26807:140:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;26807:140:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;53939:219;;8:9:-1;5:2;;;30:1;27;20:12;5:2;53939:219:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;53939:219:0;-1:-1:-1;;;;;53939:219:0;;:::i;28127:30::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;28127:30:0;;;:::i;:::-;;;;-1:-1:-1;;;;;28127:30:0;;;;;;;;;;;;;;13469:91;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13469:91:0;;;:::i;:::-;;;;;;;;;;;;;;;;28233:31;;8:9:-1;5:2;;;30:1;27;20:12;5:2;28233:31:0;;;:::i;42341:122::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;42341:122:0;;;:::i;28499:33::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;28499:33:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;26639:160;;8:9:-1;5:2;;;30:1;27;20:12;5:2;26639:160:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;26639:160:0;;;;;;;;;;;;;;;;;:::i;38314:273::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;38314:273:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;38314:273:0;;;;;;;;;;;;;;;;:::i;28555:46::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;28555:46:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;28555:46:0;-1:-1:-1;;;;;28555:46:0;;:::i;37927:125::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;37927:125:0;;;:::i;36591:142::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;36591:142:0;;;:::i;36475:104::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;36475:104:0;;;:::i;21756:83::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21756:83:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;26955:170;;8:9:-1;5:2;;;30:1;27;20:12;5:2;26955:170:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;26955:170:0;;;;;;;;:::i;25965:120::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;25965:120:0;;;:::i;23444:109::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23444:109:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;23444:109:0;-1:-1:-1;;;;;23444:109:0;;:::i;28164:28::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;28164:28:0;;;:::i;28421:33::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;28421:33:0;;;:::i;28271:26::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;28271:26:0;;;:::i;37250:443::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;37250:443:0;;;:::i;54576:189::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;54576:189:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;54576:189:0;-1:-1:-1;;;;;54576:189:0;;:::i;43324:149::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;43324:149:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;43324:149:0;-1:-1:-1;;;;;43324:149:0;;:::i;43617:104::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;43617:104:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;43617:104:0;-1:-1:-1;;;;;43617:104:0;;:::i;25172:78::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;25172:78:0;;;:::i;55204:210::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;55204:210:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;55204:210:0;;;;:::i;29604:1369::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;29604:1369:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;29604:1369:0;;:::i;23661:79::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23661:79:0;;;:::i;42219:49::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;42219:49:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;42219:49:0;-1:-1:-1;;;;;42219:49:0;;:::i;13623:110::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13623:110:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;13623:110:0;-1:-1:-1;;;;;13623:110:0;;:::i;33696:247::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;33696:247:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;33696:247:0;;:::i;46253:1264::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;46253:1264:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;46253:1264:0;;;;;;;;:::i;50514:109::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;50514:109:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;50514:109:0;-1:-1:-1;;;;;50514:109:0;;:::i;42755:39::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;42755:39:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;42755:39:0;-1:-1:-1;;;;;42755:39:0;;:::i;23561:92::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23561:92:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;23561:92:0;-1:-1:-1;;;;;23561:92:0;;:::i;25752:118::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;25752:118:0;;;:::i;37745:130::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;37745:130:0;;;:::i;21106:87::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21106:87:0;;;:::i;55426:283::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;55426:283:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;55426:283:0;;;;;;;;;;;:::i;28199:27::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;28199:27:0;;;:::i;28341:::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;28341:27:0;;;:::i;54166:207::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;54166:207:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;54166:207:0;-1:-1:-1;;;;;54166:207:0;;:::i;27133:180::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;27133:180:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;27133:180:0;;;;;;;;:::i;26499:132::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;26499:132:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;26499:132:0;;;;;;;;:::i;54779:159::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;54779:159:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;54779:159:0;-1:-1:-1;;;;;54779:159:0;;:::i;38104:125::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;38104:125:0;;;:::i;54946:246::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;54946:246:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;54946:246:0;;;;;;;;;;;:::i;45567:255::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;45567:255:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;45567:255:0;-1:-1:-1;;;;;45567:255:0;;:::i;44155:1211::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;44155:1211:0;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;;;;;;44155:1211:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;36770:443::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;36770:443:0;;;:::i;28310:24::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;28310:24:0;;;:::i;28375:39::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;28375:39:0;;;:::i;55909:418::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;55909:418:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;55909:418:0;;;;;;;;;;:::i;33955:317::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;33955:317:0;;;:::i;33284:158::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;33284:158:0;;;:::i;14167:134::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;14167:134:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;14167:134:0;;;;;;;;;;:::i;28461:31::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;28461:31:0;;;:::i;50731:79::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;50731:79:0;;;:::i;42557:117::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;42557:117:0;;;:::i;54391:171::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;54391:171:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;54391:171:0;-1:-1:-1;;;;;54391:171:0;;:::i;50631:92::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;50631:92:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;50631:92:0;-1:-1:-1;;;;;50631:92:0;;:::i;42080:70::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;42080:70:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;42080:70:0;;-1:-1:-1;;;;;42080:70:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;20904:83;20974:5;20967:12;;;;;;;;-1:-1:-1;;20967:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20941:13;;20967:12;;20974:5;;20967:12;;20974:5;20967:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20904:83;:::o;26807:140::-;25409:7;;26886:4;;25409:7;;25408:8;25400:37;;;;;-1:-1:-1;;;25400:37:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;26910:29;26924:7;26933:5;26910:13;:29::i;:::-;26903:36;;25448:1;26807:140;;;;:::o;53939:219::-;50411:22;50420:12;:10;:12::i;:::-;50411:8;:22::i;:::-;50403:83;;;;-1:-1:-1;;;50403:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54030:15;;;;;-1:-1:-1;;;;;54030:15:0;:29;54022:83;;;;-1:-1:-1;;;54022:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54116:15;:34;;-1:-1:-1;;;;;54116:34:0;;;;;;;;;;;;;;;53939:219::o;28127:30::-;;;;;;-1:-1:-1;;;;;28127:30:0;;:::o;13469:91::-;13540:12;;13469:91;:::o;28233:31::-;;;-1:-1:-1;;;;;28233:31:0;;:::o;42341:122::-;42383:80;;;;;;;;;;;;;;;;;;42341:122;:::o;28499:33::-;;;;;;;;;:::o;26639:160::-;25409:7;;26732:4;;25409:7;;25408:8;25400:37;;;;;-1:-1:-1;;;25400:37:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;26756:35;26775:4;26781:2;26785:5;26756:18;:35::i;:::-;26749:42;26639:160;-1:-1:-1;;;;26639:160:0:o;38314:273::-;38458:14;38494:85;38566:1;38542:21;;;:25;38537:2;:31;38494:24;:7;:24;;;;;:11;:24;:::i;:::-;:28;:85;:28;:85;:::i;28555:46::-;;;;;;;;;;;;;:::o;37927:125::-;38008:13;;38002:42;;;;;;37975:7;38002:42;;;;;;;;37975:7;;-1:-1:-1;;;;;38008:13:0;;38002:30;;:42;;;;;;;;;;;;;;;38008:13;38002:42;;;5:2:-1;;;;30:1;27;20:12;5:2;38002:42:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;38002:42:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;38002:42:0;;-1:-1:-1;37927:125:0;:::o;36591:142::-;36682:16;;36666:58;;;;;;36718:4;36666:58;;;;;;36639:7;;-1:-1:-1;;;;;36682:16:0;;36666:43;;:58;;;;;;;;;;;;;;36682:16;36666:58;;;5:2:-1;;;;30:1;27;20:12;36475:104:0;36520:7;36547:24;36565:4;36547:9;:24::i;:::-;36540:31;;36475:104;:::o;21756:83::-;21822:9;;;;21756:83;:::o;26955:170::-;25409:7;;27049:4;;25409:7;;25408:8;25400:37;;;;;-1:-1:-1;;;25400:37:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;27073:44;27097:7;27106:10;27073:23;:44::i;25965:120::-;23341:22;23350:12;:10;:12::i;:::-;23341:8;:22::i;:::-;23333:83;;;;-1:-1:-1;;;23333:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25608:7;;;;25600:40;;;;;-1:-1:-1;;;25600:40:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;26024:7;:15;;;;;;26055:22;26064:12;:10;:12::i;:::-;26055:22;;;-1:-1:-1;;;;;26055:22:0;;;;;;;;;;;;;;25965:120::o;23444:109::-;23500:4;23524:21;:8;23537:7;23524:21;:12;:21;:::i;28164:28::-;;;-1:-1:-1;;;;;28164:28:0;;:::o;28421:33::-;;;;;;:::o;28271:26::-;;;-1:-1:-1;;;;;28271:26:0;;:::o;37250:443::-;37297:7;37317:21;37347:13;;;;;;;;;-1:-1:-1;;;;;37347:13:0;-1:-1:-1;;;;;37341:32:0;;:34;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;37341:34:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;37341:34:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;37341:34:0;;-1:-1:-1;37386:17:0;37406;:15;:17::i;:::-;37386:37;-1:-1:-1;37434:30:0;37467:38;37491:13;37467:19;37386:37;37481:4;37467:19;:13;:19;:::i;:38::-;37553:13;;37434:71;;-1:-1:-1;37518:22:0;;37543:24;;-1:-1:-1;;;;;37553:13:0;37543:9;:24::i;:::-;37518:49;-1:-1:-1;37578:21:0;37602:52;37649:4;37602:42;37518:49;37621:22;37602:42;:18;:42;:::i;:52::-;37578:76;-1:-1:-1;;;;;;37250:443:0;:::o;54576:189::-;50411:22;50420:12;:10;:12::i;50411:22::-;50403:83;;;;-1:-1:-1;;;50403:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54666:16;:36;;;;-1:-1:-1;;;;;54666:36:0;;;;;;;;;;54742:12;;54719:36;;;54742:12;;;;54719:36;;;;;;;;;;;;;;54576:189;:::o;43324:149::-;-1:-1:-1;;;;;43444:21:0;;;43412:7;43444:21;;;:10;:21;;;;;;;;43324:149::o;43617:104::-;43681:32;43691:10;43703:9;43681;:32::i;:::-;43617:104;:::o;25172:78::-;25235:7;;;;25172:78;:::o;55204:210::-;50411:22;50420:12;:10;:12::i;50411:22::-;50403:83;;;;-1:-1:-1;;;50403:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55313:19;:42;;;;;;;;;;;;;;55371:35;;;;;;;;;;;;;;;;55204:210;:::o;29604:1369::-;29754:24;29772:4;29754:9;:24::i;:::-;29739:11;:39;;29731:135;;;;-1:-1:-1;;;29731:135:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29885:16;29877:95;;;;-1:-1:-1;;;29877:95:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30113:11;;30139:17;;30024:23;;30050:117;;30087:11;;30113;;;;;;30139:17;;;;;30050:22;:117::i;:::-;30024:143;;30192:28;30204:15;30192:11;:28::i;:::-;30245:20;30268:32;:11;30284:15;30268:32;:15;:32;:::i;:::-;30461:11;;30487:19;;30245:55;;-1:-1:-1;30370:24:0;;30397:120;;30245:55;;30461:11;;;;;;;30487:19;;30397:22;:120::i;:::-;30370:147;;30546:31;30560:16;30546:13;:31::i;:::-;30606:22;30631:34;:12;30648:16;30631:34;:16;:34;:::i;:::-;30606:59;;30731:22;30756:122;30793:14;30822:11;;;;;;;;;;;30848:19;;;;;;;;;;;30756:22;:122::i;:::-;30731:147;;30907:31;30923:14;30907:15;:31::i;:::-;29604:1369;;;;;;:::o;23661:79::-;23705:27;23719:12;:10;:12::i;:::-;23705:13;:27::i;:::-;23661:79::o;42219:49::-;;;;;;;;;;;;;;;:::o;13623:110::-;-1:-1:-1;;;;;13707:18:0;13680:7;13707:18;;;;;;;;;;;;13623:110::o;33696:247::-;33779:11;;;;;;;;;-1:-1:-1;;;;;33779:11:0;-1:-1:-1;;;;;33773:26:0;;33806:12;33773:48;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;33773:48:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;33837:11:0;;33859:13;;33831:56;;;;;;-1:-1:-1;;;;;33859:13:0;;;33831:56;;;;;;;;;;;;33837:11;;;;;-1:-1:-1;33831:27:0;;-1:-1:-1;33831:56:0;;;;;-1:-1:-1;33831:56:0;;;;;;;33837:11;;33831:56;;;5:2:-1;;;;30:1;27;20:12;5:2;33831:56:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;33831:56:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;33912:13:0;;33897:36;;;;;;;;-1:-1:-1;;;;;33912:13:0;;;;33897:34;;:36;;;;;33912:13;;33897:36;;;;;;;;33912:13;;33897:36;;;5:2:-1;;;;30:1;27;20:12;5:2;33897:36:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;33897:36:0;;;;33696:247;:::o;46253:1264::-;46361:7;46408:12;46394:11;:26;46386:89;;;;-1:-1:-1;;;46386:89:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;46510:23:0;;46488:19;46510:23;;;:14;:23;;;;;;;;46548:17;46544:58;;46589:1;46582:8;;;;;46544:58;-1:-1:-1;;;;;46662:20:0;;;;;;:11;:20;;;;;;;;:38;-1:-1:-1;;46683:16:0;;46662:38;;;;;;;;;:48;;:63;-1:-1:-1;46658:147:0;;-1:-1:-1;;;;;46749:20:0;;;;;;:11;:20;;;;;;;;-1:-1:-1;;46770:16:0;;;;46749:38;;;;;;;;46785:1;46749:44;;;-1:-1:-1;46742:51:0;;46658:147;-1:-1:-1;;;;;46866:20:0;;;;;;:11;:20;;;;;;;;:23;;;;;;;;:33;:23;:33;:47;-1:-1:-1;46862:88:0;;;46937:1;46930:8;;;;;46862:88;46962:12;-1:-1:-1;;47004:16:0;;47031:428;47046:5;47038:13;;:5;:13;;;47031:428;;;47110:1;47093:13;;;47092:19;;;47084:27;;47153:20;;:::i;:::-;-1:-1:-1;;;;;;47176:20:0;;;;;;:11;:20;;;;;;;;:28;;;;;;;;;;;;;47153:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47223:27;;47219:229;;;47278:8;;;;-1:-1:-1;47271:15:0;;-1:-1:-1;;;;47271:15:0;47219:229;47312:12;;:26;;;-1:-1:-1;47308:140:0;;;47367:6;47359:14;;47308:140;;;47431:1;47422:6;:10;47414:18;;47308:140;47031:428;;;;;-1:-1:-1;;;;;;47476:20:0;;;;;;:11;:20;;;;;;;;:27;;;;;;;;;;:33;;;;-1:-1:-1;;46253:1264:0;;;;:::o;50514:109::-;50570:4;50594:21;:8;50607:7;50594:21;:12;:21;:::i;42755:39::-;;;;;;;;;;;;;:::o;23561:92::-;23341:22;23350:12;:10;:12::i;23341:22::-;23333:83;;;;-1:-1:-1;;;23333:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23626:19;23637:7;23626:10;:19::i;25752:118::-;23341:22;23350:12;:10;:12::i;23341:22::-;23333:83;;;;-1:-1:-1;;;23333:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25409:7;;;;25408:8;25400:37;;;;;-1:-1:-1;;;25400:37:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;25812:7;:14;;;;25822:4;25812:14;;;25842:20;25849:12;:10;:12::i;37745:130::-;37828:13;;37822:45;;;;;;37861:4;37822:45;;;;;;37795:7;;-1:-1:-1;;;;;37828:13:0;;37822:30;;:45;;;;;;;;;;;;;;37828:13;37822:45;;;5:2:-1;;;;30:1;27;20:12;21106:87:0;21178:7;21171:14;;;;;;;;-1:-1:-1;;21171:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21145:13;;21171:14;;21178:7;;21171:14;;21178:7;21171:14;;;;;;;;;;;;;;;;;;;;;;;;55426:283;50411:22;50420:12;:10;:12::i;50411:22::-;50403:83;;;;-1:-1:-1;;;50403:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55541:17;:38;;;;;;;;;;;;;;;;55590:42;;;;;;;;;;;;;55648:53;;;;;;;;;;;;;;;;;;;;;;;;;55426:283;;:::o;28199:27::-;;;-1:-1:-1;;;;;28199:27:0;;:::o;28341:::-;;;;;;;;;:::o;54166:207::-;50411:22;50420:12;:10;:12::i;50411:22::-;50403:83;;;;-1:-1:-1;;;50403:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54253:13;;-1:-1:-1;;;;;54253:13:0;:27;54245:79;;;;-1:-1:-1;;;54245:79:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54335:13;:30;;;;-1:-1:-1;;;;;54335:30:0;;;;;;;;;;54166:207::o;27133:180::-;25409:7;;27232:4;;25409:7;;25408:8;25400:37;;;;;-1:-1:-1;;;25400:37:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;27256:49;27280:7;27289:15;27256:23;:49::i;26499:132::-;25409:7;;26574:4;;25409:7;;25408:8;25400:37;;;;;-1:-1:-1;;;25400:37:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;26598:25;26613:2;26617:5;26598:14;:25::i;54779:159::-;50411:22;50420:12;:10;:12::i;50411:22::-;50403:83;;;;-1:-1:-1;;;50403:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54855:11;:26;;;;-1:-1:-1;;;;;54855:26:0;;;;;;;;;;;54898:30;;;54916:11;;;;54898:30;;;;;;;;;;;;;54779:159;:::o;38104:125::-;38152:7;38179:42;38203:17;:15;:17::i;:::-;38179:19;:17;:19::i;:::-;:23;:42;:23;:42;:::i;54946:246::-;50411:22;50420:12;:10;:12::i;50411:22::-;50403:83;;;;-1:-1:-1;;;50403:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55061:11;:26;;55098:30;;;;;;;55061:26;;;;;;;;;;;;;;55098:30;;;;;55144:40;;;;;;;;;;;;;;;;;;;;;;;;;;54946:246;;:::o;45567:255::-;-1:-1:-1;;;;;45706:23:0;;45659:7;45706:23;;;:14;:23;;;;;;;;45747:16;:67;;45813:1;45747:67;;;-1:-1:-1;;;;;45766:20:0;;;;;;:11;:20;;;;;;;;:38;-1:-1:-1;;45787:16:0;;45766:38;;;;;;;;45802:1;45766:44;;45747:67;45740:74;45567:255;-1:-1:-1;;;45567:255:0:o;44155:1211::-;44348:23;42383:80;;;;;;;;;;;;;;;;;;;44477:6;:4;:6::i;:::-;44461:24;;;;;;44504:12;:10;:12::i;:::-;44543:4;44398:165;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;44398:165:0;-1:-1:-1;;;;;44398:165:0;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;44398:165:0;;;44374:200;;;;;;44348:226;;44587:18;42603:71;;;;;;;;;;;;;;;;;;;44632:140;;;;;;;;-1:-1:-1;;;;;44632:140:0;;;;;;;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;44632:140:0;;;;;44608:175;;;;;;44837:123;;;;;;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;44837:123:0;;;;;;44813:158;;;;;;;;;-1:-1:-1;45004:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44608:175;;-1:-1:-1;44813:158:0;;-1:-1:-1;;;45004:26:0;;;;;;;44632:140;-1:-1:-1;45004:26:0;;;;;;;;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;45004:26:0;;;;;;-1:-1:-1;;;;;;;45049:23:0;;45041:85;;;;-1:-1:-1;;;45041:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;45154:17:0;;;;;;:6;:17;;;;;:19;;;;;;;;45145:28;;45137:86;;;;-1:-1:-1;;;45137:86:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45249:6;45242:3;:13;;45234:75;;;;-1:-1:-1;;;45234:75:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45327:31;45337:9;45348;45327;:31::i;:::-;45320:38;;;;44155:1211;;;;;;:::o;36770:443::-;36817:7;36837:21;36867:13;;;;;;;;;-1:-1:-1;;;;;36867:13:0;-1:-1:-1;;;;;36861:32:0;;:34;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;36861:34:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;36861:34:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;36861:34:0;;-1:-1:-1;36906:17:0;36926;:15;:17::i;28310:24::-;;;;;;;;;:::o;28375:39::-;;;;;;;;;:::o;55909:418::-;56004:4;50411:22;50420:12;:10;:12::i;50411:22::-;50403:83;;;;-1:-1:-1;;;50403:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;56029:31:0;;56055:4;56029:31;;56021:63;;;;;-1:-1:-1;;;56021:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;56129:13;;-1:-1:-1;;;;;56103:40:0;;;56129:13;;56103:40;;56095:75;;;;;-1:-1:-1;;;56095:75:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;56244:30;;;;;;56268:4;56244:30;;;;;;56201:14;;56181:11;;-1:-1:-1;;;;;56244:15:0;;;;;:30;;;;;;;;;;;;;;:15;:30;;;5:2:-1;;;;30:1;27;20:12;5:2;56244:30:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;56244:30:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;56244:30:0;56292:27;;;;;;-1:-1:-1;;;;;56292:27:0;;;;;;;;;;;;;;;56244:30;;-1:-1:-1;56292:14:0;;;;;;:27;;;;;56244:30;;56292:27;;;;;;;;-1:-1:-1;56292:14:0;:27;;;5:2:-1;;;;30:1;27;20:12;5:2;56292:27:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;56292:27:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;56292:27:0;;55909:418;-1:-1:-1;;;;;55909:418:0:o;33955:317::-;34024:13;;34018:45;;;;;;34057:4;34018:45;;;;;;34000:15;;-1:-1:-1;;;;;34024:13:0;;34018:30;;:45;;;;;;;;;;;;;;34024:13;34018:45;;;5:2:-1;;;;30:1;27;20:12;5:2;34018:45:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;34018:45:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;34018:45:0;;-1:-1:-1;34082:12:0;34074:91;;;;-1:-1:-1;;;34074:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34182:13;;34176:50;;;;;;34182:13;34176:50;;;;;;;;;;;;;;-1:-1:-1;;;;;34182:13:0;;;;34176:29;;:50;;;;;;;;;;;;;;;;;;34182:13;34176:50;;;5:2:-1;;;;30:1;27;20:12;5:2;34176:50:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;34176:50:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;34242:22:0;;;;;;;;;;;;;34176:50;34242:22;;;33955:317;:::o;33284:158::-;33386:38;33399:24;33417:4;33399:9;:24::i;:::-;33386:12;:38::i;14167:134::-;-1:-1:-1;;;;;14266:18:0;;;14239:7;14266:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;14167:134::o;28461:31::-;;;;;;;;;:::o;50731:79::-;50775:27;50789:12;:10;:12::i;:::-;50775:13;:27::i;42557:117::-;42603:71;;;;;;;;;;;;;;;;;;42557:117;:::o;54391:171::-;50411:22;50420:12;:10;:12::i;50411:22::-;50403:83;;;;-1:-1:-1;;;50403:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54477:12;:28;;;;-1:-1:-1;;;;;54477:28:0;;;;;;;;;;;54521:32;;;54540:12;;;;54521:32;;;;;;;;;;;;;54391:171;:::o;50631:92::-;50411:22;50420:12;:10;:12::i;50411:22::-;50403:83;;;;-1:-1:-1;;;50403:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50696:19;50707:7;50696:10;:19::i;42080:70::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;14448:152::-;14514:4;14531:39;14540:12;:10;:12::i;:::-;14554:7;14563:6;14531:8;:39::i;:::-;-1:-1:-1;14588:4:0;14448:152;;;;:::o;3170:98::-;3250:10;3170:98;:::o;15072:304::-;15161:4;15178:36;15188:6;15196:9;15207:6;15178:9;:36::i;:::-;15225:121;15234:6;15242:12;:10;:12::i;:::-;15256:89;15294:6;15256:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15256:19:0;;;;;;:11;:19;;;;;;15276:12;:10;:12::i;:::-;-1:-1:-1;;;;;15256:33:0;;;;;;;;;;;;-1:-1:-1;15256:33:0;;;:89;;:37;:89;:::i;:::-;15225:8;:121::i;:::-;-1:-1:-1;15364:4:0;15072:304;;;;;:::o;8673:471::-;8731:7;8976:6;8972:47;;-1:-1:-1;9006:1:0;8999:8;;8972:47;9043:5;;;9047:1;9043;:5;:1;9067:5;;;;;:10;9059:56;;;;-1:-1:-1;;;9059:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9612:132;9670:7;9697:39;9701:1;9704;9697:39;;;;;;;;;;;;;;;;;:3;:39::i;15785:210::-;15865:4;15882:83;15891:12;:10;:12::i;:::-;15905:7;15914:50;15953:10;15914:11;:25;15926:12;:10;:12::i;:::-;-1:-1:-1;;;;;15914:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;15914:25:0;;;:34;;;;;;;;;;;:50;:38;:50;:::i;22709:203::-;22781:4;-1:-1:-1;;;;;22806:21:0;;22798:68;;;;-1:-1:-1;;;22798:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;22884:20:0;:11;:20;;;;;;;;;;;;;;;22709:203::o;47525:449::-;-1:-1:-1;;;;;47642:21:0;;;47616:23;47642:21;;;:10;:21;;;;;;;;;;47701:20;47653:9;47701;:20::i;:::-;-1:-1:-1;;;;;47788:21:0;;;;;;;:10;:21;;;;;;:33;;;;;;;;;;;;;47839:54;;47674:47;;-1:-1:-1;47788:33:0;47839:54;;;;;;47788:21;47839:54;47906:60;47921:15;47938:9;47949:16;47906:14;:60::i;:::-;47525:449;;;;:::o;31033:512::-;31107:23;31133:22;:15;31153:1;31133:22;:19;:22;:::i;:::-;31107:48;-1:-1:-1;31166:26:0;31195:36;:15;31107:48;31195:36;:19;:36;:::i;:::-;31166:65;-1:-1:-1;31276:21:0;31304:36;31324:15;31304:19;:36::i;:::-;31351:15;31369:50;:21;31395:23;31369:50;:25;:50;:::i;:::-;31351:68;;31428:44;31441:18;31461:10;31428:12;:44::i;:::-;31484:45;;;;;;;;;;;;;;;;;;;;;;;;;31033:512;;;;;:::o;7757:136::-;7815:7;7842:43;7846:1;7849;7842:43;;;;;;;;;;;;;;;;;:3;:43::i;31584:519::-;31664:18;31685:24;:17;31707:1;31685:24;:21;:24;:::i;:::-;31664:45;-1:-1:-1;31720:20:0;31743:33;:17;31664:45;31743:33;:21;:33;:::i;:::-;31720:56;-1:-1:-1;31821:21:0;31849:31;31869:10;31849:19;:31::i;:::-;31891:19;31913:50;:21;31939:23;31913:50;:25;:50;:::i;:::-;31891:72;;31984:39;32010:12;31984:25;:39::i;:::-;32044:41;32073:11;32044:28;:41::i;32143:940::-;32244:15;32314:21;32342:36;32244:15;32342:19;:36::i;:::-;32389:27;32419:54;:21;32445:27;32419:54;:25;:54;:::i;:::-;32389:84;-1:-1:-1;32482:24:0;32509:26;32389:84;32533:1;32509:26;:23;:26;:::i;:::-;32482:53;-1:-1:-1;32542:27:0;32572:41;:19;32482:53;32572:41;:23;:41;:::i;:::-;32725:12;;32719:44;;;;;;32757:4;32719:44;;;;;;32542:71;;-1:-1:-1;32684:32:0;;-1:-1:-1;;;;;32725:12:0;;;;32719:29;;:44;;;;;;;;;;;;;;;32725:12;32719:44;;;5:2:-1;;;;30:1;27;20:12;5:2;32719:44:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;32719:44:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;32719:44:0;;-1:-1:-1;32770:38:0;32791:16;32770:20;:38::i;:::-;32849:12;;32843:44;;;;;;32881:4;32843:44;;;;;;32819:21;;32843:74;;32892:24;;-1:-1:-1;;;;;32849:12:0;;;;32843:29;;:44;;;;;;;;;;;;;;;32849:12;32843:44;;;5:2:-1;;;;30:1;27;20:12;5:2;32843:44:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;32843:44:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;32843:44:0;;:74;:48;:74;:::i;:::-;32819:98;;32957:53;32975:13;32990:19;32957:17;:53::i;:::-;33022:49;;;;;;;;;;;;;;;;;;;;;;;;;32143:940;;;;;;;;:::o;23878:130::-;23938:24;:8;23954:7;23938:24;:15;:24;:::i;:::-;23978:22;;-1:-1:-1;;;;;23978:22:0;;;;;;;;23878:130;:::o;23748:122::-;23805:21;:8;23818:7;23805:21;:12;:21;:::i;:::-;23842:20;;-1:-1:-1;;;;;23842:20:0;;;;;;;;23748:122;:::o;16498:261::-;16583:4;16600:129;16609:12;:10;:12::i;:::-;16623:7;16632:96;16671:15;16632:96;;;;;;;;;;;;;;;;;:11;:25;16644:12;:10;:12::i;:::-;-1:-1:-1;;;;;16632:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;16632:25:0;;;:34;;;;;;;;;;;:96;;:38;:96;:::i;13946:158::-;14015:4;14032:42;14042:12;:10;:12::i;:::-;14056:9;14067:6;14032:9;:42::i;7301:181::-;7359:7;7391:5;;;7415:6;;;;7407:46;;;;;-1:-1:-1;;;7407:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;49829:153;49939:9;49829:153;:::o;50948:130::-;51008:24;:8;51024:7;51008:24;:15;:24;:::i;:::-;51048:22;;-1:-1:-1;;;;;51048:22:0;;;;;;;;50948:130;:::o;50818:122::-;50875:21;:8;50888:7;50875:21;:12;:21;:::i;:::-;50912:20;;-1:-1:-1;;;;;50912:20:0;;;;;;;;50818:122;:::o;19429:338::-;-1:-1:-1;;;;;19523:19:0;;19515:68;;;;-1:-1:-1;;;19515:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19602:21:0;;19594:68;;;;-1:-1:-1;;;19594:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19675:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;19727:32;;;;;;;;;;;;;;;;;19429:338;;;:::o;28611:908::-;25409:7;;;;25408:8;25400:37;;;;;-1:-1:-1;;;25400:37:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28977:21:0;;28993:4;28977:21;28973:539;;29174:11;;29090:23;;29116:108;;29153:6;;29174:11;;;;;;29200:13;;;;;29116:22;:108::i;:::-;29090:134;-1:-1:-1;29249:21:0;29273:27;:6;29090:134;29273:27;:10;:27;:::i;:::-;29249:51;;29315:53;29331:4;29345;29352:15;29315;:53::i;:::-;29383:42;29399:4;29405:2;29410:13;29383:15;:42::i;:::-;28973:539;;;;;29467:33;29483:4;29489:2;29493:6;29467:15;:33::i;:::-;28611:908;;;:::o;8230:192::-;8316:7;8352:12;8344:6;;;;8336:29;;;;-1:-1:-1;;;8336:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;8336:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;8388:5:0;;;8230:192::o;10274:345::-;10360:7;10462:12;10455:5;10447:28;;;;-1:-1:-1;;;10447:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;10447:28:0;;10486:9;10502:1;10498;:5;;;;;;;10274:345;-1:-1:-1;;;;;10274:345:0:o;47982:947::-;48088:6;-1:-1:-1;;;;;48078:16:0;:6;-1:-1:-1;;;;;48078:16:0;;;:30;;;;;48107:1;48098:6;:10;48078:30;48074:848;;;-1:-1:-1;;;;;48129:20:0;;;48125:385;;-1:-1:-1;;;;;48237:22:0;;48218:16;48237:22;;;:14;:22;;;;;;;;;48298:13;:60;;48357:1;48298:60;;;-1:-1:-1;;;;;48314:19:0;;;;;;:11;:19;;;;;;;;:34;-1:-1:-1;;48334:13:0;;48314:34;;;;;;;;48346:1;48314:40;;48298:60;48278:80;-1:-1:-1;48377:17:0;48397:21;48278:80;48411:6;48397:21;:13;:21;:::i;:::-;48377:41;;48437:57;48454:6;48462:9;48473;48484;48437:16;:57::i;:::-;48125:385;;;;-1:-1:-1;;;;;48530:20:0;;;48526:385;;-1:-1:-1;;;;;48638:22:0;;48619:16;48638:22;;;:14;:22;;;;;;;;;48699:13;:60;;48758:1;48699:60;;;-1:-1:-1;;;;;48715:19:0;;;;;;:11;:19;;;;;;;;:34;-1:-1:-1;;48735:13:0;;48715:34;;;;;;;;48747:1;48715:40;;48699:60;48679:80;-1:-1:-1;48778:17:0;48798:21;48679:80;48812:6;48798:21;:13;:21;:::i;:::-;48778:41;;48838:57;48855:6;48863:9;48874;48885;48838:16;:57::i;34280:591::-;34384:16;;;34398:1;34384:16;;;34349:32;34384:16;;;;;34349:32;34384:16;;;;;105:10:-1;34384:16:0;88:34:-1;136:17;;-1:-1;34384:16:0;34349:51;;34440:4;34411:15;34427:1;34411:18;;;;;;;;;;;;;:34;-1:-1:-1;;;;;34411:34:0;;;-1:-1:-1;;;;;34411:34:0;;;;;34496:15;;;;;;;;;-1:-1:-1;;;;;34496:15:0;-1:-1:-1;;;;;34477:40:0;;:42;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;34477:42:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;34477:42:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;34477:42:0;34456:18;;:15;;34472:1;;34456:18;;;;;;-1:-1:-1;;;;;34456:63:0;;;:18;;;;;;;;;:63;34556:15;;34532:53;;34549:4;;34556:15;;;;34573:11;34532:8;:53::i;:::-;34617:15;;34598:265;;;;;;;;;;;-1:-1:-1;34598:265:0;;;;;;34809:4;34598:265;;;;;;34833:15;34598:265;;;;;;;;;;;;;;;;;;;;;34617:15;;;;-1:-1:-1;;;;;34617:15:0;;34598:100;;:265;;;;34809:4;34833:15;34598:265;;;;;;;-1:-1:-1;34598:265:0;;;;;;;;-1:-1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;34598:265:0;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;34598:265:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;35476:441:0;35581:15;;35557:53;;35574:4;;35581:15;;;-1:-1:-1;;;;;35581:15:0;35598:11;35557:8;:53::i;:::-;35642:15;;35623:279;;;;;;35746:4;35623:279;;;;;;;;;;;;-1:-1:-1;35623:279:0;;;;;;;;;;;;;;35872:15;35623:279;;;;;;35642:15;;;;-1:-1:-1;;;;;35642:15:0;;35623:65;;35709:9;;35623:279;;;;;;;;;;;;;;35709:9;35642:15;35623:279;;;5:2:-1;;;;30:1;27;20:12;5:2;35623:279:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;35623:279:0;;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;33450:234:0;33558:13;;33527:60;;33551:4;;-1:-1:-1;;;;;33558:13:0;33573;33527:15;:60::i;:::-;33613:13;;;;;;;;;-1:-1:-1;;;;;33613:13:0;-1:-1:-1;;;;;33598:34:0;;:36;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;33598:36:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;33650:26:0;;;;;;;;;;-1:-1:-1;33650:26:0;;;;;;;-1:-1:-1;33650:26:0;33450:234;:::o;34883:575::-;34986:16;;;35000:1;34986:16;;;34951:32;34986:16;;;;;34951:32;34986:16;;;;;105:10:-1;34986:16:0;88:34:-1;136:17;;-1:-1;34986:16:0;34951:51;;35053:15;;;;;;;;;-1:-1:-1;;;;;35053:15:0;-1:-1:-1;;;;;35034:40:0;;:42;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;35034:42:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;35034:42:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;35034:42:0;35013:18;;:15;;35029:1;;35013:18;;;;-1:-1:-1;;;;;35013:63:0;;;:18;;;;;;;;;:63;35108:12;;35087:18;;35108:12;;;35087:15;;35108:12;;35087:18;;;;;;-1:-1:-1;;;;;35087:33:0;;;:18;;;;;;;;;;:33;;;;35147:11;;35168:15;;35141:54;;;;;;35147:11;35168:15;;;;;35141:54;;;;;;;;;;;35147:11;;;;;35141:26;;:54;;;;;35087:18;;35141:54;;;;;35147:11;;35141:54;;;5:2:-1;;;;30:1;27;20:12;5:2;35141:54:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;35141:54:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;35246:15:0;;35227:226;;;;;35369:1;35227:226;;;;;;35415:4;35227:226;;;;;;35431:15;35227:226;;;;;;;;;;;;;;;;;;;;;35246:15;;;;-1:-1:-1;;;;;35246:15:0;;35227:100;;35348:9;;35369:1;35227:226;;35415:4;35431:15;35227:226;;;;;;;-1:-1:-1;35227:226:0;;;;;;;;35369:1;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;35227:226:0;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;35227:226:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;35227:226:0;;;;;34883:575;;:::o;35930:508::-;36022:11;;36043:15;;36016:54;;;;;;36022:11;36043:15;;;-1:-1:-1;;;;;36043:15:0;;;36016:54;;;;;;;;;;;;36022:11;;;36016:26;;:54;;;;;;;;;;;;;;;36022:11;;36016:54;;;5:2:-1;;;;30:1;27;20:12;5:2;36016:54:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;36016:54:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;36087:12:0;;36109:15;;36081:57;;;;;;36087:12;36109:15;;;-1:-1:-1;;;;;36109:15:0;;;36081:57;;;;;;;;;;;;36087:12;;;36081:27;;:57;;;;;36016:54;;36081:57;;;;;;;;36087:12;;36081:57;;;5:2:-1;;;;30:1;27;20:12;5:2;36081:57:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;36081:57:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;36170:15:0;;36266:12;;36151:278;;;;;;-1:-1:-1;;;;;36266:12:0;;;36151:278;;;;;;;;;;-1:-1:-1;36151:278:0;;;;;;;;;;36375:4;36151:278;;;;36399:15;36151:278;;;;;;36170:15;;;;;;;;36151:65;;36237:9;;36151:278;;;;;;;;;;;;;;36237:9;36170:15;36151:278;;;5:2:-1;;;;30:1;27;20:12;22431:183:0;22511:18;22515:4;22521:7;22511:3;:18::i;:::-;22503:64;;;;-1:-1:-1;;;22503:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22578:20:0;22601:5;22578:20;;;;;;;;;;;:28;;;;;;22431:183::o;22173:178::-;22251:18;22255:4;22261:7;22251:3;:18::i;:::-;22250:19;22242:63;;;;;-1:-1:-1;;;22242:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22316:20:0;:11;:20;;;;;;;;;;;:27;;;;22339:4;22316:27;;;22173:178::o;40737:189::-;-1:-1:-1;;;;;40833:16:0;;;;;;;:10;:16;;;;;;;40851:14;;;;;;;;40818:56;;40833:16;;;;40851:14;40867:6;40818:14;:56::i;:::-;40885:33;40901:4;40907:2;40911:6;40885:15;:33::i;48937:715::-;49116:18;49137:87;49144:12;49137:87;;;;;;;;;;;;;;;;;:6;:87::i;:::-;49116:108;;49256:1;49241:12;:16;;;:85;;;;-1:-1:-1;;;;;;49261:22:0;;;;;;:11;:22;;;;;;;;:65;-1:-1:-1;;49284:16:0;;49261:40;;;;;;;;;:50;:65;;;:50;;:65;49241:85;49237:339;;;-1:-1:-1;;;;;49343:22:0;;;;;;:11;:22;;;;;;;;:40;-1:-1:-1;;49366:16:0;;49343:40;;;;;;;;49381:1;49343:46;:57;;;49237:339;;;49472:33;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;49433:22:0;;-1:-1:-1;49433:22:0;;;:11;:22;;;;;:36;;;;;;;;;;:72;;;;;;;;;;;;;;;;;;;;;49520:25;;;:14;:25;;;;;;:44;;49548:16;;;49520:44;;;;;;;;;;49237:339;49593:51;;;;;;;;;;;;;;-1:-1:-1;;;;;49593:51:0;;;;;;;;;;;48937:715;;;;;:::o;17249:471::-;-1:-1:-1;;;;;17347:20:0;;17339:70;;;;-1:-1:-1;;;17339:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17428:23:0;;17420:71;;;;-1:-1:-1;;;17420:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17524;17546:6;17524:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17524:17:0;;:9;:17;;;;;;;;;;;;:71;;:21;:71;:::i;:::-;-1:-1:-1;;;;;17504:17:0;;;:9;:17;;;;;;;;;;;:91;;;;17629:20;;;;;;;:32;;17654:6;17629:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;17606:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;17677:35;;;;;;;17606:20;;17677:35;;;;;;;;;;;;;17249:471;;;:::o;49660:161::-;49735:6;49773:12;49766:5;49762:9;;49754:32;;;;-1:-1:-1;;;49754:32:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;49754:32:0;-1:-1:-1;49811:1:0;;49660:161;-1:-1:-1;;49660:161:0:o;53465:2867::-;;;;;;;;;;-1:-1:-1;53465:2867:0;;;;;;;;:::o;18001:308::-;-1:-1:-1;;;;;18077:21:0;;18069:65;;;;;-1:-1:-1;;;18069:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;18162:12;;:24;;18179:6;18162:24;:16;:24;:::i;:::-;18147:12;:39;-1:-1:-1;;;;;18218:18:0;;:9;:18;;;;;;;;;;;:30;;18241:6;18218:30;:22;:30;:::i;:::-;-1:-1:-1;;;;;18197:18:0;;:9;:18;;;;;;;;;;;:51;;;;18264:37;;;;;;;18197:18;;:9;;18264:37;;;;;;;;;;18001:308;;:::o

Swarm Source

bzzr://1b0992ca10100ad95683829731942c2390f93568b9a70830df923881fc93e0ae
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.