CRO Price: $0.08 (-0.16%)

Token

ShiftDollar Finance (SHIFT)

Overview

Max Total Supply

2,871,732.549284151176664863 SHIFT

Holders

169

Market

Price

$0.00 @ 0.000000 CRO

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.496978586187103707 SHIFT

Value
$0.00
0x18f3bd138b6a272180a5c173ffe25288de9fc366
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
ShiftToken

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at cronoscan.com on 2022-07-17
*/

/**
 *Submitted for verification at cronoscan.com on 2022-06-18
*/

/**
 *Submitted for verification at cronoscan.com on 2022-04-14
*/

// SPDX-License-Identifier: MIT

pragma solidity 0.6.12;

/*
 * @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.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address payable) {
        return msg.sender;
    }

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

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

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

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

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

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

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

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

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

/**
 * @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, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        uint256 c = a + b;
        if (c < a) return (false, 0);
        return (true, c);
    }

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

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

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

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

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

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        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, reverting 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) {
        require(b > 0, "SafeMath: division by zero");
        return a / b;
    }

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

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

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

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

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin 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;

    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @dev Sets the values for {name} and {symbol}, initializes {decimals} with
     * a default value of 18.
     *
     * To select a different value for {decimals}, use {_setupDecimals}.
     *
     * All three of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) public {
        _name = name_;
        _symbol = symbol_;
        _decimals = 18;
    }

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(sender, recipient, amount);

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

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

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

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

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

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

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

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

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

    /**
     * @dev Sets {decimals} to a value other than the default one of 18.
     *
     * WARNING: This function should only be called from the constructor. Most
     * applications that interact with token contracts will not expect
     * {decimals} to ever change, and may work incorrectly if it does.
     */
    function _setupDecimals(uint8 decimals_) internal virtual {
        _decimals = decimals_;
    }

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

/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    using SafeMath for uint256;

    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        uint256 decreasedAllowance = allowance(account, _msgSender()).sub(
            amount,
            "ERC20: burn amount exceeds allowance"
        );

        _approve(account, _msgSender(), decreasedAllowance);
        _burn(account, amount);
    }
}

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() internal {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

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

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

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

contract Operator is Context, Ownable {
    address private _operator;

    event OperatorTransferred(
        address indexed previousOperator,
        address indexed newOperator
    );

    constructor() internal {
        _operator = _msgSender();
        emit OperatorTransferred(address(0), _operator);
    }

    function operator() public view returns (address) {
        return _operator;
    }

    modifier onlyOperator() {
        require(
            _operator == msg.sender,
            "operator: caller is not the operator"
        );
        _;
    }

    function isOperator() public view returns (bool) {
        return _msgSender() == _operator;
    }

    function transferOperator(address newOperator_) public onlyOwner {
        _transferOperator(newOperator_);
    }

    function _transferOperator(address newOperator_) internal {
        require(
            newOperator_ != address(0),
            "operator: zero address given for new operator"
        );
        emit OperatorTransferred(address(0), newOperator_);
        _operator = newOperator_;
    }
}

interface IOracle {
    function update() external;

    function consult(address _token, uint256 _amountIn)
        external
        view
        returns (uint144 amountOut);

    function twap(address _token, uint256 _amountIn)
        external
        view
        returns (uint144 _amountOut);

    function getPegPrice() external view returns (int256);

    function getPegPriceUpdated() external view returns (int256);
}

interface ILiquidityFund {
    function addLiquidity(uint256 _amount) external;
}

contract ShiftToken is ERC20Burnable, Operator {
    using SafeMath for uint256;

    /* ========== STATE VARIABLES ========== */
    mapping(address => bool) public ipool;


    address public oracle;
    uint256 public burnRate;
    uint256 public taxPrice;
    uint256 public taxRate; 
    uint256 public dollarPriceOne; 
    uint256 public dollarPriceTax; 
    address public taxFund; 

    uint256 private _totalBurned;
    uint256 private _totalTaxAdded;
    bool public enableUpdatePrice;
    mapping(address => bool) private _isExcludedFromFee;
    mapping(address => bool) private _isExcludedToFee;

    /* =================== Added variables (need to keep orders for proxy to work) =================== */
    /*...

    /* ========== EVENTS ========== */

    event TaxAdded(address indexed account, address taxFund, uint256 amount);
    event IpoolUpdate(address indexed account, bool isIpool);
    // Track DOLLAR burned
    event DollarBurned(address indexed from, address indexed to, uint256 amount);

    // Track DOLLAR minted
    event DollarMinted(address indexed from, address indexed to, uint256 amount);

    /* ========== Modifiers =============== */

     modifier onlyPool() {
        require(ipool[msg.sender], "!ipool");
        _;
    }

    /* ========== GOVERNANCE ========== */

    /**
     * @notice Constructs the V3S-Peg Token ERC-20 contract.
     */
    constructor(
        string memory name_,
        string memory symbol_,
        uint8 decimals_,
        address _taxFund
    ) public ERC20(name_, symbol_) {
        _setupDecimals(decimals_);
        taxFund = _taxFund;
        burnRate = 100;
        taxRate = 100;
        enableUpdatePrice = true;

        dollarPriceOne = 10**18;
        dollarPriceTax = dollarPriceOne.mul(102).div(100);

        _mint(msg.sender,50000 ether);
    }

    function setOracle(address _oracle) external onlyOwner {
        oracle = _oracle;
    }

    function setBurnRate(uint256 _burnRate) external onlyOwner {
        require(_burnRate <= 1500, "too high"); // <= 15%
        burnRate = _burnRate;
    }

    function setTaxRate(uint256 _taxRate) external onlyOwner {
        require(_taxRate <= 1500, "too high"); // <= 15%
        taxRate = _taxRate;
    }

    function setTaxFund(address _taxFund) external onlyOwner {
        require(_taxFund != address(0), "zero");
        taxFund = _taxFund;
    }

    function setExcludeFromFee(address _account, bool _status)
        external
        onlyOwner
    {
        _isExcludedFromFee[_account] = _status;
    }

    function setExcludeToFee(address _account, bool _status)
        external
        onlyOwner
    {
        _isExcludedToFee[_account] = _status;
    }

    function setExcludeBothDirectionsFee(address _account, bool _status)
        external
        onlyOwner
    {
        _isExcludedFromFee[_account] = _status;
        _isExcludedToFee[_account] = _status;
    }  
      function switchEnableUpdatePrice()
        external
        onlyOwner
    {
        enableUpdatePrice = !enableUpdatePrice;
    }

    function setIpool(address _account, bool _isIpool) external onlyOwner {
        require(_account != address(0), "zero");
        ipool[_account] = _isIpool;
        emit IpoolUpdate(_account, _isIpool);
    }
    /* ========== VIEW FUNCTIONS ========== */

    function totalBurned() external view returns (uint256) {
        return _totalBurned;
    }

    function totalTaxAdded() external view returns (uint256) {
        return _totalTaxAdded;
    }


    function getTokenPrice() public view returns (uint256) {
        address _oracle = oracle;
        return
            (_oracle == address(0))
                ? 1e18
                : uint256(IOracle(_oracle).consult(address(this), 1e18));
    }

    function getTokenUpdatedPrice() public view returns (uint256) {
        address _oracle = oracle;
        return
            (_oracle == address(0))
                ? 1e18
                : uint256(IOracle(_oracle).twap(address(this), 1e18));
    }

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

    function isExcludedToFee(address _account) external view returns (bool) {
        return _isExcludedToFee[_account];
    }


    /* ========== MUTATIVE FUNCTIONS ========== */

    function _updateDollarPrice() internal {
        address _oracle = oracle;
        if(_oracle != address(0) && enableUpdatePrice == true)
         try IOracle(_oracle).update() {} catch {}
    }

    /**
     * @notice Operator mints basis V3S-Peg Token to a recipient
     * @param recipient_ The address of recipient
     * @param amount_ The amount of basis V3S-Peg Token to mint to
     * @return whether the process has been done
     */
    function mint(address recipient_, uint256 amount_)
        public
        onlyPool
        returns (bool)
    {
        uint256 balanceBefore = balanceOf(recipient_);
        _mint(recipient_, amount_);
        uint256 balanceAfter = balanceOf(recipient_);

        return balanceAfter > balanceBefore;
    }

    function burn(uint256 amount) public override {
        super.burn(amount);
    }

    function burnFrom(address account, uint256 amount)
        public
        override
        onlyPool
    {
        super.burnFrom(account, amount);
    }

    // Burn DOLLAR. Can be used by Pool only
    function poolBurnFrom(address _address, uint256 _amount) external  onlyPool {
        super._burn(_address, _amount);
        emit DollarBurned(_address, msg.sender, _amount);
    }

    // Mint DOLLAR. Can be used by Pool only
    function poolMint(address _address, uint256 _amount) external  onlyPool {
        super._mint(_address, _amount);
        emit DollarMinted(msg.sender, _address, _amount);
    }

    /* ========== OVERRIDE STANDARD FUNCTIONS ========== */

    /**
     * @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 override {
        super._burn(_account, _amount);
        _totalBurned = _totalBurned.add(_amount);
    }


    /**
     * @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 override {
        require(sender != address(0), "SHIFT: transfer to the zero address");
        require(
            recipient != address(0),
            "SHIFT: transfer to the zero address"
        );

        uint256 _amount = amount;

        _beforeTokenTransfer(sender, recipient, _amount);

        if (!_isExcludedFromFee[sender] && !_isExcludedToFee[recipient]) {
            uint256 _tokenPrice = getTokenUpdatedPrice();
            if (_tokenPrice < dollarPriceTax) {
                {
                    uint256 _taxRate = taxRate;
                    if (_taxRate > 0) {
                        uint256 _taxAmount = amount.mul(_taxRate).div(10000);
                        address _taxFund = taxFund;
                        super._transfer(sender, _taxFund, _taxAmount);
                        _amount = _amount.sub(_taxAmount);
                        _totalTaxAdded = _totalTaxAdded.add(_taxAmount);
                        emit TaxAdded(sender, _taxFund, _taxAmount);
                    }
                }
                {
                    uint256 _burnRate = burnRate;
                    if (_burnRate > 0) {
                        uint256 _burnAmount = amount.mul(_burnRate).div(10000);
                        _burn(sender, _burnAmount);
                        _amount = _amount.sub(_burnAmount);
                    }
                }
            }
        }

        super._transfer(sender, recipient, _amount);


        _updateDollarPrice();
    }

    /* ========== EMERGENCY ========== */

    function governanceRecoverUnsupported(IERC20 _token) external onlyOwner {
        _token.transfer(owner(), _token.balanceOf(address(this)));
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint8","name":"decimals_","type":"uint8"},{"internalType":"address","name":"_taxFund","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"DollarBurned","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":"amount","type":"uint256"}],"name":"DollarMinted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isIpool","type":"bool"}],"name":"IpoolUpdate","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOperator","type":"address"},{"indexed":true,"internalType":"address","name":"newOperator","type":"address"}],"name":"OperatorTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"address","name":"taxFund","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"TaxAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"burnRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"dollarPriceOne","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dollarPriceTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableUpdatePrice","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTokenPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTokenUpdatedPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"_token","type":"address"}],"name":"governanceRecoverUnsupported","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"ipool","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"isExcludedToFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isOperator","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient_","type":"address"},{"internalType":"uint256","name":"amount_","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operator","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"oracle","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"poolBurnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"poolMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_burnRate","type":"uint256"}],"name":"setBurnRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"setExcludeBothDirectionsFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"setExcludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"setExcludeToFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"bool","name":"_isIpool","type":"bool"}],"name":"setIpool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_oracle","type":"address"}],"name":"setOracle","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_taxFund","type":"address"}],"name":"setTaxFund","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_taxRate","type":"uint256"}],"name":"setTaxRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"switchEnableUpdatePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxFund","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalBurned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalTaxAdded","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOperator_","type":"address"}],"name":"transferOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604051620049ae380380620049ae833981810160405260808110156200003757600080fd5b81019080805160405193929190846401000000008211156200005857600080fd5b838201915060208201858111156200006f57600080fd5b82518660018202830111640100000000821117156200008d57600080fd5b8083526020830192505050908051906020019080838360005b83811015620000c3578082015181840152602081019050620000a6565b50505050905090810190601f168015620000f15780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200011557600080fd5b838201915060208201858111156200012c57600080fd5b82518660018202830111640100000000821117156200014a57600080fd5b8083526020830192505050908051906020019080838360005b838110156200018057808201518184015260208101905062000163565b50505050905090810190601f168015620001ae5780820380516001836020036101000a031916815260200191505b50604052602001805190602001909291908051906020019092919050505083838160039080519060200190620001e692919062000833565b508060049080519060200190620001ff92919062000833565b506012600560006101000a81548160ff021916908360ff16021790555050506000620002306200048b60201b60201c565b905080600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350620002df6200048b60201b60201c565b600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f74da04524d50c64947f5dd5381ef1a4dca5cba8ed1d816243f9e48aa0b5617ed60405160405180910390a3620003ad826200049360201b60201c565b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060646009819055506064600b819055506001601160006101000a81548160ff021916908315150217905550670de0b6b3a7640000600c819055506200045f60646200044b6066600c54620004b160201b62002d431790919060201c565b6200053c60201b62002dc91790919060201c565b600d819055506200048133690a968163f0a57b400000620005c760201b60201c565b50505050620008d9565b600033905090565b80600560006101000a81548160ff021916908360ff16021790555050565b600080831415620004c6576000905062000536565b6000828402905082848281620004d857fe5b041462000531576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806200498d6021913960400191505060405180910390fd5b809150505b92915050565b6000808211620005b4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525060200191505060405180910390fd5b818381620005be57fe5b04905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200066b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b6200067f60008383620007a560201b60201c565b6200069b81600254620007aa60201b62002e521790919060201c565b600281905550620006f9816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054620007aa60201b62002e521790919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b505050565b60008082840190508381101562000829576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200087657805160ff1916838001178555620008a7565b82800160010185558215620008a7579182015b82811115620008a657825182559160200191906001019062000889565b5b509050620008b69190620008ba565b5090565b5b80821115620008d5576000816000905550600101620008bb565b5090565b6140a480620008e96000396000f3fe608060405234801561001057600080fd5b50600436106102945760003560e01c8063715018a611610167578063a457c2d7116100ce578063d89135cd11610087578063d89135cd14610cee578063dd62ed3e14610d0c578063e8d4a0f314610d84578063eda5745c14610dc8578063ee7e767114610de6578063f2fde38b14610e2a57610294565b8063a457c2d714610b56578063a9059cbb14610bba578063af9549e014610c1e578063bed9985014610c6e578063c6d69a3014610c8c578063c732050914610cba57610294565b8063844f30fb11610120578063844f30fb146109e95780638b93e49e14610a435780638cae960c14610a615780638da5cb5b14610a8157806394bdf63e14610ab557806395d89b4114610ad357610294565b8063715018a6146108f1578063771a3a1d146108fb57806379cc6790146109195780637adbf973146109675780637dc0d1d0146109ab5780637ecacefe146109df57610294565b806329605e771161020b5780634b94f50e116101c45780634b94f50e1461077f5780635342acb41461079d578063570ca735146107f75780636409de781461082b57806369993ba01461087b57806370a082311461089957610294565b806329605e7714610604578063313ce56714610648578063395093511461066957806340c10f19146106cd57806342966c68146107315780634456eda21461075f57610294565b80630c407d561161025d5780630c407d561461043c5780630ed5243c1461048a5780630f93b5e9146104e457806318160ddd14610534578063189d165e1461055257806323b872dd1461058057610294565b80620321041461029957806302317601146102b757806306fdde0314610307578063095ea7b31461038a5780630a0c165a146103ee575b600080fd5b6102a1610e6e565b6040518082815260200191505060405180910390f35b610305600480360360408110156102cd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050610fa5565b005b61030f611106565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561034f578082015181840152602081019050610334565b50505050905090810190601f16801561037c5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6103d6600480360360408110156103a057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506111a8565b60405180821515815260200191505060405180910390f35b61043a6004803603604081101561040457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506111c6565b005b6104886004803603604081101561045257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506112f8565b005b6104cc600480360360208110156104a057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061142a565b60405180821515815260200191505060405180910390f35b610532600480360360408110156104fa57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080351515906020019092919050505061144a565b005b61053c611647565b6040518082815260200191505060405180910390f35b61057e6004803603602081101561056857600080fd5b8101908080359060200190929190505050611651565b005b6105ec6004803603606081101561059657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611782565b60405180821515815260200191505060405180910390f35b6106466004803603602081101561061a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061185b565b005b610650611916565b604051808260ff16815260200191505060405180910390f35b6106b56004803603604081101561067f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061192d565b60405180821515815260200191505060405180910390f35b610719600480360360408110156106e357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506119e0565b60405180821515815260200191505060405180910390f35b61075d6004803603602081101561074757600080fd5b8101908080359060200190929190505050611ad2565b005b610767611ade565b60405180821515815260200191505060405180910390f35b610787611b3d565b6040518082815260200191505060405180910390f35b6107df600480360360208110156107b357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611c74565b60405180821515815260200191505060405180910390f35b6107ff611cca565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6108796004803603604081101561084157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050611cf4565b005b610883611dfe565b6040518082815260200191505060405180910390f35b6108db600480360360208110156108af57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611e04565b6040518082815260200191505060405180910390f35b6108f9611e4c565b005b610903611fbc565b6040518082815260200191505060405180910390f35b6109656004803603604081101561092f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611fc2565b005b6109a96004803603602081101561097d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061208f565b005b6109b3612182565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6109e76121a8565b005b610a2b600480360360208110156109ff57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612283565b60405180821515815260200191505060405180910390f35b610a4b6122d9565b6040518082815260200191505060405180910390f35b610a696122e3565b60405180821515815260200191505060405180910390f35b610a896122f6565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610abd612320565b6040518082815260200191505060405180910390f35b610adb612326565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610b1b578082015181840152602081019050610b00565b50505050905090810190601f168015610b485780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610ba260048036036040811015610b6c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506123c8565b60405180821515815260200191505060405180910390f35b610c0660048036036040811015610bd057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612495565b60405180821515815260200191505060405180910390f35b610c6c60048036036040811015610c3457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035151590602001909291905050506124b3565b005b610c766125bd565b6040518082815260200191505060405180910390f35b610cb860048036036020811015610ca257600080fd5b81019080803590602001909291905050506125c3565b005b610cc26126f4565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610cf661271a565b6040518082815260200191505060405180910390f35b610d6e60048036036040811015610d2257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612724565b6040518082815260200191505060405180910390f35b610dc660048036036020811015610d9a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506127ab565b005b610dd06129b2565b6040518082815260200191505060405180910390f35b610e2860048036036020811015610dfc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506129b8565b005b610e6c60048036036020811015610e4057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612b4e565b005b600080600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610f95578073ffffffffffffffffffffffffffffffffffffffff16636808a12830670de0b6b3a76400006040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060206040518083038186803b158015610f4157600080fd5b505afa158015610f55573d6000803e3d6000fd5b505050506040513d6020811015610f6b57600080fd5b810190808051906020019092919050505071ffffffffffffffffffffffffffffffffffff16610f9f565b670de0b6b3a76400005b91505090565b610fad612eda565b73ffffffffffffffffffffffffffffffffffffffff16610fcb6122f6565b73ffffffffffffffffffffffffffffffffffffffff1614611054576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b606060038054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561119e5780601f106111735761010080835404028352916020019161119e565b820191906000526020600020905b81548152906001019060200180831161118157829003601f168201915b5050505050905090565b60006111bc6111b5612eda565b8484612ee2565b6001905092915050565b600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611285576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260068152602001807f2169706f6f6c000000000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b61128f82826130d9565b3373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fb53a8a5aa66e96b4627a60632ff728cd6991e142988ea8f28215fae565fe8ad0836040518082815260200191505060405180910390a35050565b600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166113b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260068152602001807f2169706f6f6c000000000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b6113c1828261329d565b8173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f0c0f5df55f02a0601bce877b4f87152a1e95aa77aa55a08f16a8852fcf1f2bf9836040518082815260200191505060405180910390a35050565b60076020528060005260406000206000915054906101000a900460ff1681565b611452612eda565b73ffffffffffffffffffffffffffffffffffffffff166114706122f6565b73ffffffffffffffffffffffffffffffffffffffff16146114f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561159c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260048152602001807f7a65726f0000000000000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b80600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167fd73e27c67d33b6cf029932d98c49788b7d5a203d19543f44fa4d3ff80aa08fe88260405180821515815260200191505060405180910390a25050565b6000600254905090565b611659612eda565b73ffffffffffffffffffffffffffffffffffffffff166116776122f6565b73ffffffffffffffffffffffffffffffffffffffff1614611700576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6105dc811115611778576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260088152602001807f746f6f206869676800000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b8060098190555050565b600061178f848484613464565b6118508461179b612eda565b61184b85604051806060016040528060288152602001613f7160289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000611801612eda565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546137c59092919063ffffffff16565b612ee2565b600190509392505050565b611863612eda565b73ffffffffffffffffffffffffffffffffffffffff166118816122f6565b73ffffffffffffffffffffffffffffffffffffffff161461190a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6119138161387f565b50565b6000600560009054906101000a900460ff16905090565b60006119d661193a612eda565b846119d1856001600061194b612eda565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612e5290919063ffffffff16565b612ee2565b6001905092915050565b6000600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611aa1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260068152602001807f2169706f6f6c000000000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b6000611aac84611e04565b9050611ab8848461329d565b6000611ac385611e04565b90508181119250505092915050565b611adb816139a4565b50565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611b21612eda565b73ffffffffffffffffffffffffffffffffffffffff1614905090565b600080600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611c64578073ffffffffffffffffffffffffffffffffffffffff16633ddac95330670de0b6b3a76400006040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060206040518083038186803b158015611c1057600080fd5b505afa158015611c24573d6000803e3d6000fd5b505050506040513d6020811015611c3a57600080fd5b810190808051906020019092919050505071ffffffffffffffffffffffffffffffffffff16611c6e565b670de0b6b3a76400005b91505090565b6000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611cfc612eda565b73ffffffffffffffffffffffffffffffffffffffff16611d1a6122f6565b73ffffffffffffffffffffffffffffffffffffffff1614611da3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600d5481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611e54612eda565b73ffffffffffffffffffffffffffffffffffffffff16611e726122f6565b73ffffffffffffffffffffffffffffffffffffffff1614611efb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600b5481565b600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612081576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260068152602001807f2169706f6f6c000000000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b61208b82826139b8565b5050565b612097612eda565b73ffffffffffffffffffffffffffffffffffffffff166120b56122f6565b73ffffffffffffffffffffffffffffffffffffffff161461213e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6121b0612eda565b73ffffffffffffffffffffffffffffffffffffffff166121ce6122f6565b73ffffffffffffffffffffffffffffffffffffffff1614612257576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b601160009054906101000a900460ff1615601160006101000a81548160ff021916908315150217905550565b6000601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000601054905090565b601160009054906101000a900460ff1681565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600c5481565b606060048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156123be5780601f10612393576101008083540402835291602001916123be565b820191906000526020600020905b8154815290600101906020018083116123a157829003601f168201915b5050505050905090565b600061248b6123d5612eda565b846124868560405180606001604052806025815260200161404a60259139600160006123ff612eda565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546137c59092919063ffffffff16565b612ee2565b6001905092915050565b60006124a96124a2612eda565b8484613464565b6001905092915050565b6124bb612eda565b73ffffffffffffffffffffffffffffffffffffffff166124d96122f6565b73ffffffffffffffffffffffffffffffffffffffff1614612562576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60095481565b6125cb612eda565b73ffffffffffffffffffffffffffffffffffffffff166125e96122f6565b73ffffffffffffffffffffffffffffffffffffffff1614612672576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6105dc8111156126ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260088152602001807f746f6f206869676800000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b80600b8190555050565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600f54905090565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6127b3612eda565b73ffffffffffffffffffffffffffffffffffffffff166127d16122f6565b73ffffffffffffffffffffffffffffffffffffffff161461285a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb61287e6122f6565b8373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156128e557600080fd5b505afa1580156128f9573d6000803e3d6000fd5b505050506040513d602081101561290f57600080fd5b81019080805190602001909291905050506040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561297357600080fd5b505af1158015612987573d6000803e3d6000fd5b505050506040513d602081101561299d57600080fd5b81019080805190602001909291905050505050565b600a5481565b6129c0612eda565b73ffffffffffffffffffffffffffffffffffffffff166129de6122f6565b73ffffffffffffffffffffffffffffffffffffffff1614612a67576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612b0a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260048152602001807f7a65726f0000000000000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b612b56612eda565b73ffffffffffffffffffffffffffffffffffffffff16612b746122f6565b73ffffffffffffffffffffffffffffffffffffffff1614612bfd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612c83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180613eb56026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080831415612d565760009050612dc3565b6000828402905082848281612d6757fe5b0414612dbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180613f506021913960400191505060405180910390fd5b809150505b92915050565b6000808211612e40576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525060200191505060405180910390fd5b818381612e4957fe5b04905092915050565b600080828401905083811015612ed0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612f68576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806140266024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612fee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180613edb6022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561315f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180613fe06021913960400191505060405180910390fd5b61316b82600083613a1a565b6131d681604051806060016040528060228152602001613e93602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546137c59092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061322d81600254613a1f90919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613340576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b61334c60008383613a1a565b61336181600254612e5290919063ffffffff16565b6002819055506133b8816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612e5290919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156134ea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180613f996023913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613570576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180613f996023913960400191505060405180910390fd5b6000819050613580848483613a1a565b601260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156136245750601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156137ac576000613633610e6e565b9050600d548110156137aa576000600b549050600081111561374b57600061367861271061366a8488612d4390919063ffffffff16565b612dc990919063ffffffff16565b90506000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690506136ac888284613aa2565b6136bf8286613a1f90919063ffffffff16565b94506136d682601054612e5290919063ffffffff16565b6010819055508773ffffffffffffffffffffffffffffffffffffffff167f3518075fae16f1bca7d9a1f28fede590b3ee4854c3c0bb4c5259b4ed62aa16748284604051808373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060405180910390a250505b506000600954905060008111156137a85760006137856127106137778488612d4390919063ffffffff16565b612dc990919063ffffffff16565b90506137918782613d63565b6137a48185613a1f90919063ffffffff16565b9350505b505b505b6137b7848483613aa2565b6137bf613d8c565b50505050565b6000838311158290613872576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561383757808201518184015260208101905061381c565b50505050905090810190601f1680156138645780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5082840390509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613905576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602d815260200180613f23602d913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f74da04524d50c64947f5dd5381ef1a4dca5cba8ed1d816243f9e48aa0b5617ed60405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6139b56139af612eda565b82613d63565b50565b60006139f782604051806060016040528060248152602001613fbc602491396139e8866139e3612eda565b612724565b6137c59092919063ffffffff16565b9050613a0b83613a05612eda565b83612ee2565b613a158383613d63565b505050565b505050565b600082821115613a97576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525060200191505060405180910390fd5b818303905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613b28576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806140016025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613bae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180613e706023913960400191505060405180910390fd5b613bb9838383613a1a565b613c2481604051806060016040528060268152602001613efd602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546137c59092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613cb7816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612e5290919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b613d6d82826130d9565b613d8281600f54612e5290919063ffffffff16565b600f819055505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614158015613e03575060011515601160009054906101000a900460ff161515145b15613e6c578073ffffffffffffffffffffffffffffffffffffffff1663a2e620456040518163ffffffff1660e01b8152600401600060405180830381600087803b158015613e5057600080fd5b505af1925050508015613e61575060015b613e6a57613e6b565b5b5b5056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63656f70657261746f723a207a65726f206164647265737320676976656e20666f72206e6577206f70657261746f72536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636553484946543a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122081ff76f79dd61350c36c761bca42a6286b2aff2bb89c38a22dbfb3892c5407e164736f6c634300060c0033536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000120000000000000000000000008387d8519aaf2b15a5666f9784ef47b03c09a38100000000000000000000000000000000000000000000000000000000000000135368696674446f6c6c61722046696e616e63650000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055348494654000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102945760003560e01c8063715018a611610167578063a457c2d7116100ce578063d89135cd11610087578063d89135cd14610cee578063dd62ed3e14610d0c578063e8d4a0f314610d84578063eda5745c14610dc8578063ee7e767114610de6578063f2fde38b14610e2a57610294565b8063a457c2d714610b56578063a9059cbb14610bba578063af9549e014610c1e578063bed9985014610c6e578063c6d69a3014610c8c578063c732050914610cba57610294565b8063844f30fb11610120578063844f30fb146109e95780638b93e49e14610a435780638cae960c14610a615780638da5cb5b14610a8157806394bdf63e14610ab557806395d89b4114610ad357610294565b8063715018a6146108f1578063771a3a1d146108fb57806379cc6790146109195780637adbf973146109675780637dc0d1d0146109ab5780637ecacefe146109df57610294565b806329605e771161020b5780634b94f50e116101c45780634b94f50e1461077f5780635342acb41461079d578063570ca735146107f75780636409de781461082b57806369993ba01461087b57806370a082311461089957610294565b806329605e7714610604578063313ce56714610648578063395093511461066957806340c10f19146106cd57806342966c68146107315780634456eda21461075f57610294565b80630c407d561161025d5780630c407d561461043c5780630ed5243c1461048a5780630f93b5e9146104e457806318160ddd14610534578063189d165e1461055257806323b872dd1461058057610294565b80620321041461029957806302317601146102b757806306fdde0314610307578063095ea7b31461038a5780630a0c165a146103ee575b600080fd5b6102a1610e6e565b6040518082815260200191505060405180910390f35b610305600480360360408110156102cd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050610fa5565b005b61030f611106565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561034f578082015181840152602081019050610334565b50505050905090810190601f16801561037c5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6103d6600480360360408110156103a057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506111a8565b60405180821515815260200191505060405180910390f35b61043a6004803603604081101561040457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506111c6565b005b6104886004803603604081101561045257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506112f8565b005b6104cc600480360360208110156104a057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061142a565b60405180821515815260200191505060405180910390f35b610532600480360360408110156104fa57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080351515906020019092919050505061144a565b005b61053c611647565b6040518082815260200191505060405180910390f35b61057e6004803603602081101561056857600080fd5b8101908080359060200190929190505050611651565b005b6105ec6004803603606081101561059657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611782565b60405180821515815260200191505060405180910390f35b6106466004803603602081101561061a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061185b565b005b610650611916565b604051808260ff16815260200191505060405180910390f35b6106b56004803603604081101561067f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061192d565b60405180821515815260200191505060405180910390f35b610719600480360360408110156106e357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506119e0565b60405180821515815260200191505060405180910390f35b61075d6004803603602081101561074757600080fd5b8101908080359060200190929190505050611ad2565b005b610767611ade565b60405180821515815260200191505060405180910390f35b610787611b3d565b6040518082815260200191505060405180910390f35b6107df600480360360208110156107b357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611c74565b60405180821515815260200191505060405180910390f35b6107ff611cca565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6108796004803603604081101561084157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050611cf4565b005b610883611dfe565b6040518082815260200191505060405180910390f35b6108db600480360360208110156108af57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611e04565b6040518082815260200191505060405180910390f35b6108f9611e4c565b005b610903611fbc565b6040518082815260200191505060405180910390f35b6109656004803603604081101561092f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611fc2565b005b6109a96004803603602081101561097d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061208f565b005b6109b3612182565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6109e76121a8565b005b610a2b600480360360208110156109ff57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612283565b60405180821515815260200191505060405180910390f35b610a4b6122d9565b6040518082815260200191505060405180910390f35b610a696122e3565b60405180821515815260200191505060405180910390f35b610a896122f6565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610abd612320565b6040518082815260200191505060405180910390f35b610adb612326565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610b1b578082015181840152602081019050610b00565b50505050905090810190601f168015610b485780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610ba260048036036040811015610b6c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506123c8565b60405180821515815260200191505060405180910390f35b610c0660048036036040811015610bd057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612495565b60405180821515815260200191505060405180910390f35b610c6c60048036036040811015610c3457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035151590602001909291905050506124b3565b005b610c766125bd565b6040518082815260200191505060405180910390f35b610cb860048036036020811015610ca257600080fd5b81019080803590602001909291905050506125c3565b005b610cc26126f4565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610cf661271a565b6040518082815260200191505060405180910390f35b610d6e60048036036040811015610d2257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612724565b6040518082815260200191505060405180910390f35b610dc660048036036020811015610d9a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506127ab565b005b610dd06129b2565b6040518082815260200191505060405180910390f35b610e2860048036036020811015610dfc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506129b8565b005b610e6c60048036036020811015610e4057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612b4e565b005b600080600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610f95578073ffffffffffffffffffffffffffffffffffffffff16636808a12830670de0b6b3a76400006040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060206040518083038186803b158015610f4157600080fd5b505afa158015610f55573d6000803e3d6000fd5b505050506040513d6020811015610f6b57600080fd5b810190808051906020019092919050505071ffffffffffffffffffffffffffffffffffff16610f9f565b670de0b6b3a76400005b91505090565b610fad612eda565b73ffffffffffffffffffffffffffffffffffffffff16610fcb6122f6565b73ffffffffffffffffffffffffffffffffffffffff1614611054576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b606060038054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561119e5780601f106111735761010080835404028352916020019161119e565b820191906000526020600020905b81548152906001019060200180831161118157829003601f168201915b5050505050905090565b60006111bc6111b5612eda565b8484612ee2565b6001905092915050565b600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611285576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260068152602001807f2169706f6f6c000000000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b61128f82826130d9565b3373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fb53a8a5aa66e96b4627a60632ff728cd6991e142988ea8f28215fae565fe8ad0836040518082815260200191505060405180910390a35050565b600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166113b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260068152602001807f2169706f6f6c000000000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b6113c1828261329d565b8173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f0c0f5df55f02a0601bce877b4f87152a1e95aa77aa55a08f16a8852fcf1f2bf9836040518082815260200191505060405180910390a35050565b60076020528060005260406000206000915054906101000a900460ff1681565b611452612eda565b73ffffffffffffffffffffffffffffffffffffffff166114706122f6565b73ffffffffffffffffffffffffffffffffffffffff16146114f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561159c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260048152602001807f7a65726f0000000000000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b80600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167fd73e27c67d33b6cf029932d98c49788b7d5a203d19543f44fa4d3ff80aa08fe88260405180821515815260200191505060405180910390a25050565b6000600254905090565b611659612eda565b73ffffffffffffffffffffffffffffffffffffffff166116776122f6565b73ffffffffffffffffffffffffffffffffffffffff1614611700576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6105dc811115611778576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260088152602001807f746f6f206869676800000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b8060098190555050565b600061178f848484613464565b6118508461179b612eda565b61184b85604051806060016040528060288152602001613f7160289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000611801612eda565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546137c59092919063ffffffff16565b612ee2565b600190509392505050565b611863612eda565b73ffffffffffffffffffffffffffffffffffffffff166118816122f6565b73ffffffffffffffffffffffffffffffffffffffff161461190a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6119138161387f565b50565b6000600560009054906101000a900460ff16905090565b60006119d661193a612eda565b846119d1856001600061194b612eda565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612e5290919063ffffffff16565b612ee2565b6001905092915050565b6000600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611aa1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260068152602001807f2169706f6f6c000000000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b6000611aac84611e04565b9050611ab8848461329d565b6000611ac385611e04565b90508181119250505092915050565b611adb816139a4565b50565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611b21612eda565b73ffffffffffffffffffffffffffffffffffffffff1614905090565b600080600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611c64578073ffffffffffffffffffffffffffffffffffffffff16633ddac95330670de0b6b3a76400006040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060206040518083038186803b158015611c1057600080fd5b505afa158015611c24573d6000803e3d6000fd5b505050506040513d6020811015611c3a57600080fd5b810190808051906020019092919050505071ffffffffffffffffffffffffffffffffffff16611c6e565b670de0b6b3a76400005b91505090565b6000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611cfc612eda565b73ffffffffffffffffffffffffffffffffffffffff16611d1a6122f6565b73ffffffffffffffffffffffffffffffffffffffff1614611da3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600d5481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611e54612eda565b73ffffffffffffffffffffffffffffffffffffffff16611e726122f6565b73ffffffffffffffffffffffffffffffffffffffff1614611efb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600b5481565b600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612081576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260068152602001807f2169706f6f6c000000000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b61208b82826139b8565b5050565b612097612eda565b73ffffffffffffffffffffffffffffffffffffffff166120b56122f6565b73ffffffffffffffffffffffffffffffffffffffff161461213e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6121b0612eda565b73ffffffffffffffffffffffffffffffffffffffff166121ce6122f6565b73ffffffffffffffffffffffffffffffffffffffff1614612257576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b601160009054906101000a900460ff1615601160006101000a81548160ff021916908315150217905550565b6000601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000601054905090565b601160009054906101000a900460ff1681565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600c5481565b606060048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156123be5780601f10612393576101008083540402835291602001916123be565b820191906000526020600020905b8154815290600101906020018083116123a157829003601f168201915b5050505050905090565b600061248b6123d5612eda565b846124868560405180606001604052806025815260200161404a60259139600160006123ff612eda565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546137c59092919063ffffffff16565b612ee2565b6001905092915050565b60006124a96124a2612eda565b8484613464565b6001905092915050565b6124bb612eda565b73ffffffffffffffffffffffffffffffffffffffff166124d96122f6565b73ffffffffffffffffffffffffffffffffffffffff1614612562576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60095481565b6125cb612eda565b73ffffffffffffffffffffffffffffffffffffffff166125e96122f6565b73ffffffffffffffffffffffffffffffffffffffff1614612672576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6105dc8111156126ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260088152602001807f746f6f206869676800000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b80600b8190555050565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600f54905090565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6127b3612eda565b73ffffffffffffffffffffffffffffffffffffffff166127d16122f6565b73ffffffffffffffffffffffffffffffffffffffff161461285a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb61287e6122f6565b8373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156128e557600080fd5b505afa1580156128f9573d6000803e3d6000fd5b505050506040513d602081101561290f57600080fd5b81019080805190602001909291905050506040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561297357600080fd5b505af1158015612987573d6000803e3d6000fd5b505050506040513d602081101561299d57600080fd5b81019080805190602001909291905050505050565b600a5481565b6129c0612eda565b73ffffffffffffffffffffffffffffffffffffffff166129de6122f6565b73ffffffffffffffffffffffffffffffffffffffff1614612a67576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612b0a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260048152602001807f7a65726f0000000000000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b612b56612eda565b73ffffffffffffffffffffffffffffffffffffffff16612b746122f6565b73ffffffffffffffffffffffffffffffffffffffff1614612bfd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612c83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180613eb56026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080831415612d565760009050612dc3565b6000828402905082848281612d6757fe5b0414612dbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180613f506021913960400191505060405180910390fd5b809150505b92915050565b6000808211612e40576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525060200191505060405180910390fd5b818381612e4957fe5b04905092915050565b600080828401905083811015612ed0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612f68576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806140266024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612fee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180613edb6022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561315f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180613fe06021913960400191505060405180910390fd5b61316b82600083613a1a565b6131d681604051806060016040528060228152602001613e93602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546137c59092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061322d81600254613a1f90919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613340576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b61334c60008383613a1a565b61336181600254612e5290919063ffffffff16565b6002819055506133b8816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612e5290919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156134ea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180613f996023913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613570576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180613f996023913960400191505060405180910390fd5b6000819050613580848483613a1a565b601260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156136245750601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156137ac576000613633610e6e565b9050600d548110156137aa576000600b549050600081111561374b57600061367861271061366a8488612d4390919063ffffffff16565b612dc990919063ffffffff16565b90506000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690506136ac888284613aa2565b6136bf8286613a1f90919063ffffffff16565b94506136d682601054612e5290919063ffffffff16565b6010819055508773ffffffffffffffffffffffffffffffffffffffff167f3518075fae16f1bca7d9a1f28fede590b3ee4854c3c0bb4c5259b4ed62aa16748284604051808373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060405180910390a250505b506000600954905060008111156137a85760006137856127106137778488612d4390919063ffffffff16565b612dc990919063ffffffff16565b90506137918782613d63565b6137a48185613a1f90919063ffffffff16565b9350505b505b505b6137b7848483613aa2565b6137bf613d8c565b50505050565b6000838311158290613872576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561383757808201518184015260208101905061381c565b50505050905090810190601f1680156138645780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5082840390509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613905576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602d815260200180613f23602d913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f74da04524d50c64947f5dd5381ef1a4dca5cba8ed1d816243f9e48aa0b5617ed60405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6139b56139af612eda565b82613d63565b50565b60006139f782604051806060016040528060248152602001613fbc602491396139e8866139e3612eda565b612724565b6137c59092919063ffffffff16565b9050613a0b83613a05612eda565b83612ee2565b613a158383613d63565b505050565b505050565b600082821115613a97576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525060200191505060405180910390fd5b818303905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613b28576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806140016025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613bae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180613e706023913960400191505060405180910390fd5b613bb9838383613a1a565b613c2481604051806060016040528060268152602001613efd602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546137c59092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613cb7816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612e5290919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b613d6d82826130d9565b613d8281600f54612e5290919063ffffffff16565b600f819055505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614158015613e03575060011515601160009054906101000a900460ff161515145b15613e6c578073ffffffffffffffffffffffffffffffffffffffff1663a2e620456040518163ffffffff1660e01b8152600401600060405180830381600087803b158015613e5057600080fd5b505af1925050508015613e61575060015b613e6a57613e6b565b5b5b5056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63656f70657261746f723a207a65726f206164647265737320676976656e20666f72206e6577206f70657261746f72536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636553484946543a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122081ff76f79dd61350c36c761bca42a6286b2aff2bb89c38a22dbfb3892c5407e164736f6c634300060c0033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000120000000000000000000000008387d8519aaf2b15a5666f9784ef47b03c09a38100000000000000000000000000000000000000000000000000000000000000135368696674446f6c6c61722046696e616e63650000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055348494654000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): ShiftDollar Finance
Arg [1] : symbol_ (string): SHIFT
Arg [2] : decimals_ (uint8): 18
Arg [3] : _taxFund (address): 0x8387d8519AAf2b15a5666F9784eF47b03C09a381

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 0000000000000000000000008387d8519aaf2b15a5666f9784ef47b03c09a381
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000013
Arg [5] : 5368696674446f6c6c61722046696e616e636500000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [7] : 5348494654000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

28308:8897:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32214:254;;;:::i;:::-;;;;;;;;;;;;;;;;;;;31113:215;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;13623:91;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15910:210;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;33888:184;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;34126:180;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;28446:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;31480:212;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;14722:108;;;:::i;:::-;;;;;;;;;;;;;;;;;;;30308:157;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;16602:454;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;27351:115;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;14566:91;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;17465:300;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;33259:318;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;33585:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;27243:100;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;31956:250;;;:::i;:::-;;;;;;;;;;;;;;;;;;;32476:128;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;26978:85;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;30951:154;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;28649:29;;;:::i;:::-;;;;;;;;;;;;;;;;;;;14893:177;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;26054:148;;;:::i;:::-;;28582:22;;;:::i;:::-;;;;;;;;;;;;;;;;;;;33676:158;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;30210:90;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;28494:21;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;31338:134;;;:::i;:::-;;32612:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;31849:97;;;:::i;:::-;;;;;;;;;;;;;;;;;;;28790:29;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;25403:87;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;28612:29;;;:::i;:::-;;;;;;;;;;;;;;;;;;;13833:95;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18268:400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;15283:216;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;30785:158;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;28522:23;;;:::i;:::-;;;;;;;;;;;;;;;;;;;30473:152;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;28686:22;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;31748:93;;;:::i;:::-;;;;;;;;;;;;;;;;;;;15562:201;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;37054:148;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;28552:23;;;:::i;:::-;;;;;;;;;;;;;;;;;;;30633:144;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;26357:281;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;32214:254;32267:7;32287:15;32305:6;;;;;;;;;;;32287:24;;32362:1;32343:21;;:7;:21;;;32342:118;;32425:7;32417:21;;;32447:4;32454;32417:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32409:51;;32342:118;;;32385:4;32342:118;32322:138;;;32214:254;:::o;31113:215::-;25634:12;:10;:12::i;:::-;25623:23;;:7;:5;:7::i;:::-;:23;;;25615:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31266:7:::1;31235:18;:28;31254:8;31235:28;;;;;;;;;;;;;;;;:38;;;;;;;;;;;;;;;;;;31313:7;31284:16;:26;31301:8;31284:26;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;31113:215:::0;;:::o;13623:91::-;13668:13;13701:5;13694:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13623:91;:::o;15910:210::-;16029:4;16051:39;16060:12;:10;:12::i;:::-;16074:7;16083:6;16051:8;:39::i;:::-;16108:4;16101:11;;15910:210;;;;:::o;33888:184::-;29562:5;:17;29568:10;29562:17;;;;;;;;;;;;;;;;;;;;;;;;;29554:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33975:30:::1;33987:8;33997:7;33975:11;:30::i;:::-;34044:10;34021:43;;34034:8;34021:43;;;34056:7;34021:43;;;;;;;;;;;;;;;;;;33888:184:::0;;:::o;34126:180::-;29562:5;:17;29568:10;29562:17;;;;;;;;;;;;;;;;;;;;;;;;;29554:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34209:30:::1;34221:8;34231:7;34209:11;:30::i;:::-;34280:8;34255:43;;34268:10;34255:43;;;34290:7;34255:43;;;;;;;;;;;;;;;;;;34126:180:::0;;:::o;28446:37::-;;;;;;;;;;;;;;;;;;;;;;:::o;31480:212::-;25634:12;:10;:12::i;:::-;25623:23;;:7;:5;:7::i;:::-;:23;;;25615:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31589:1:::1;31569:22;;:8;:22;;;;31561:39;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;31629:8;31611:5;:15;31617:8;31611:15;;;;;;;;;;;;;;;;:26;;;;;;;;;;;;;;;;;;31665:8;31653:31;;;31675:8;31653:31;;;;;;;;;;;;;;;;;;;;31480:212:::0;;:::o;14722:108::-;14783:7;14810:12;;14803:19;;14722:108;:::o;30308:157::-;25634:12;:10;:12::i;:::-;25623:23;;:7;:5;:7::i;:::-;:23;;;25615:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30399:4:::1;30386:9;:17;;30378:38;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;30448:9;30437:8;:20;;;;30308:157:::0;:::o;16602:454::-;16742:4;16759:36;16769:6;16777:9;16788:6;16759:9;:36::i;:::-;16806:220;16829:6;16850:12;:10;:12::i;:::-;16877:138;16933:6;16877:138;;;;;;;;;;;;;;;;;:11;:19;16889:6;16877:19;;;;;;;;;;;;;;;:33;16897:12;:10;:12::i;:::-;16877:33;;;;;;;;;;;;;;;;:37;;:138;;;;;:::i;:::-;16806:8;:220::i;:::-;17044:4;17037:11;;16602:454;;;;;:::o;27351:115::-;25634:12;:10;:12::i;:::-;25623:23;;:7;:5;:7::i;:::-;:23;;;25615:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27427:31:::1;27445:12;27427:17;:31::i;:::-;27351:115:::0;:::o;14566:91::-;14615:5;14640:9;;;;;;;;;;;14633:16;;14566:91;:::o;17465:300::-;17580:4;17602:133;17625:12;:10;:12::i;:::-;17652:7;17674:50;17713:10;17674:11;:25;17686:12;:10;:12::i;:::-;17674:25;;;;;;;;;;;;;;;:34;17700:7;17674:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;17602:8;:133::i;:::-;17753:4;17746:11;;17465:300;;;;:::o;33259:318::-;33362:4;29562:5;:17;29568:10;29562:17;;;;;;;;;;;;;;;;;;;;;;;;;29554:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33384:21:::1;33408;33418:10;33408:9;:21::i;:::-;33384:45;;33440:26;33446:10;33458:7;33440:5;:26::i;:::-;33477:20;33500:21;33510:10;33500:9;:21::i;:::-;33477:44;;33556:13;33541:12;:28;33534:35;;;;33259:318:::0;;;;:::o;33585:83::-;33642:18;33653:6;33642:10;:18::i;:::-;33585:83;:::o;27243:100::-;27286:4;27326:9;;;;;;;;;;;27310:25;;:12;:10;:12::i;:::-;:25;;;27303:32;;27243:100;:::o;31956:250::-;32002:7;32022:15;32040:6;;;;;;;;;;;32022:24;;32097:1;32078:21;;:7;:21;;;32077:121;;32160:7;32152:24;;;32185:4;32192;32152:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32144:54;;32077:121;;;32120:4;32077:121;32057:141;;;31956:250;:::o;32476:128::-;32544:4;32568:18;:28;32587:8;32568:28;;;;;;;;;;;;;;;;;;;;;;;;;32561:35;;32476:128;;;:::o;26978:85::-;27019:7;27046:9;;;;;;;;;;;27039:16;;26978:85;:::o;30951:154::-;25634:12;:10;:12::i;:::-;25623:23;;:7;:5;:7::i;:::-;:23;;;25615:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31090:7:::1;31061:16;:26;31078:8;31061:26;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;30951:154:::0;;:::o;28649:29::-;;;;:::o;14893:177::-;15012:7;15044:9;:18;15054:7;15044:18;;;;;;;;;;;;;;;;15037:25;;14893:177;;;:::o;26054:148::-;25634:12;:10;:12::i;:::-;25623:23;;:7;:5;:7::i;:::-;:23;;;25615:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26161:1:::1;26124:40;;26145:6;;;;;;;;;;;26124:40;;;;;;;;;;;;26192:1;26175:6;;:19;;;;;;;;;;;;;;;;;;26054:148::o:0;28582:22::-;;;;:::o;33676:158::-;29562:5;:17;29568:10;29562:17;;;;;;;;;;;;;;;;;;;;;;;;;29554:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33795:31:::1;33810:7;33819:6;33795:14;:31::i;:::-;33676:158:::0;;:::o;30210:90::-;25634:12;:10;:12::i;:::-;25623:23;;:7;:5;:7::i;:::-;:23;;;25615:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30285:7:::1;30276:6;;:16;;;;;;;;;;;;;;;;;;30210:90:::0;:::o;28494:21::-;;;;;;;;;;;;;:::o;31338:134::-;25634:12;:10;:12::i;:::-;25623:23;;:7;:5;:7::i;:::-;:23;;;25615:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31447:17:::1;;;;;;;;;;;31446:18;31426:17;;:38;;;;;;;;;;;;;;;;;;31338:134::o:0;32612:124::-;32678:4;32702:16;:26;32719:8;32702:26;;;;;;;;;;;;;;;;;;;;;;;;;32695:33;;32612:124;;;:::o;31849:97::-;31897:7;31924:14;;31917:21;;31849:97;:::o;28790:29::-;;;;;;;;;;;;;:::o;25403:87::-;25449:7;25476:6;;;;;;;;;;;25469:13;;25403:87;:::o;28612:29::-;;;;:::o;13833:95::-;13880:13;13913:7;13906:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13833:95;:::o;18268:400::-;18388:4;18410:228;18433:12;:10;:12::i;:::-;18460:7;18482:145;18539:15;18482:145;;;;;;;;;;;;;;;;;:11;:25;18494:12;:10;:12::i;:::-;18482:25;;;;;;;;;;;;;;;:34;18508:7;18482:34;;;;;;;;;;;;;;;;:38;;:145;;;;;:::i;:::-;18410:8;:228::i;:::-;18656:4;18649:11;;18268:400;;;;:::o;15283:216::-;15405:4;15427:42;15437:12;:10;:12::i;:::-;15451:9;15462:6;15427:9;:42::i;:::-;15487:4;15480:11;;15283:216;;;;:::o;30785:158::-;25634:12;:10;:12::i;:::-;25623:23;;:7;:5;:7::i;:::-;:23;;;25615:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30928:7:::1;30897:18;:28;30916:8;30897:28;;;;;;;;;;;;;;;;:38;;;;;;;;;;;;;;;;;;30785:158:::0;;:::o;28522:23::-;;;;:::o;30473:152::-;25634:12;:10;:12::i;:::-;25623:23;;:7;:5;:7::i;:::-;:23;;;25615:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30561:4:::1;30549:8;:16;;30541:37;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;30609:8;30599:7;:18;;;;30473:152:::0;:::o;28686:22::-;;;;;;;;;;;;;:::o;31748:93::-;31794:7;31821:12;;31814:19;;31748:93;:::o;15562:201::-;15696:7;15728:11;:18;15740:5;15728:18;;;;;;;;;;;;;;;:27;15747:7;15728:27;;;;;;;;;;;;;;;;15721:34;;15562:201;;;;:::o;37054:148::-;25634:12;:10;:12::i;:::-;25623:23;;:7;:5;:7::i;:::-;:23;;;25615:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37137:6:::1;:15;;;37153:7;:5;:7::i;:::-;37162:6;:16;;;37187:4;37162:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;37137:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;37054:148:::0;:::o;28552:23::-;;;;:::o;30633:144::-;25634:12;:10;:12::i;:::-;25623:23;;:7;:5;:7::i;:::-;:23;;;25615:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30729:1:::1;30709:22;;:8;:22;;;;30701:39;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;30761:8;30751:7;;:18;;;;;;;;;;;;;;;;;;30633:144:::0;:::o;26357:281::-;25634:12;:10;:12::i;:::-;25623:23;;:7;:5;:7::i;:::-;:23;;;25615:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26480:1:::1;26460:22;;:8;:22;;;;26438:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26593:8;26564:38;;26585:6;;;;;;;;;;;26564:38;;;;;;;;;;;;26622:8;26613:6;;:17;;;;;;;;;;;;;;;;;;26357:281:::0;:::o;7672:220::-;7730:7;7759:1;7754;:6;7750:20;;;7769:1;7762:8;;;;7750:20;7781:9;7797:1;7793;:5;7781:17;;7826:1;7821;7817;:5;;;;;;:10;7809:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7883:1;7876:8;;;7672:220;;;;;:::o;8370:153::-;8428:7;8460:1;8456;:5;8448:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8514:1;8510;:5;;;;;;8503:12;;8370:153;;;;:::o;6793:179::-;6851:7;6871:9;6887:1;6883;:5;6871:17;;6912:1;6907;:6;;6899:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6963:1;6956:8;;;6793:179;;;;:::o;749:106::-;802:15;837:10;830:17;;749:106;:::o;21654:380::-;21807:1;21790:19;;:5;:19;;;;21782:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21888:1;21869:21;;:7;:21;;;;21861:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21972:6;21942:11;:18;21954:5;21942:18;;;;;;;;;;;;;;;:27;21961:7;21942:27;;;;;;;;;;;;;;;:36;;;;22010:7;21994:32;;22003:5;21994:32;;;22019:6;21994:32;;;;;;;;;;;;;;;;;;21654:380;;;:::o;20761:455::-;20864:1;20845:21;;:7;:21;;;;20837:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20917:49;20938:7;20955:1;20959:6;20917:20;:49::i;:::-;21000:105;21037:6;21000:105;;;;;;;;;;;;;;;;;:9;:18;21010:7;21000:18;;;;;;;;;;;;;;;;:22;;:105;;;;;:::i;:::-;20979:9;:18;20989:7;20979:18;;;;;;;;;;;;;;;:126;;;;21131:24;21148:6;21131:12;;:16;;:24;;;;:::i;:::-;21116:12;:39;;;;21197:1;21171:37;;21180:7;21171:37;;;21201:6;21171:37;;;;;;;;;;;;;;;;;;20761:455;;:::o;20050:378::-;20153:1;20134:21;;:7;:21;;;;20126:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20204:49;20233:1;20237:7;20246:6;20204:20;:49::i;:::-;20281:24;20298:6;20281:12;;:16;;:24;;;;:::i;:::-;20266:12;:39;;;;20337:30;20360:6;20337:9;:18;20347:7;20337:18;;;;;;;;;;;;;;;;:22;;:30;;;;:::i;:::-;20316:9;:18;20326:7;20316:18;;;;;;;;;;;;;;;:51;;;;20404:7;20383:37;;20400:1;20383:37;;;20413:6;20383:37;;;;;;;;;;;;;;;;;;20050:378;;:::o;35364:1637::-;35523:1;35505:20;;:6;:20;;;;35497:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35619:1;35598:23;;:9;:23;;;;35576:108;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35697:15;35715:6;35697:24;;35734:48;35755:6;35763:9;35774:7;35734:20;:48::i;:::-;35800:18;:26;35819:6;35800:26;;;;;;;;;;;;;;;;;;;;;;;;;35799:27;:59;;;;;35831:16;:27;35848:9;35831:27;;;;;;;;;;;;;;;;;;;;;;;;;35830:28;35799:59;35795:1108;;;35875:19;35897:22;:20;:22::i;:::-;35875:44;;35952:14;;35938:11;:28;35934:958;;;36010:16;36029:7;;36010:26;;36074:1;36063:8;:12;36059:450;;;36104:18;36125:31;36150:5;36125:20;36136:8;36125:6;:10;;:20;;;;:::i;:::-;:24;;:31;;;;:::i;:::-;36104:52;;36183:16;36202:7;;;;;;;;;;;36183:26;;36236:45;36252:6;36260:8;36270:10;36236:15;:45::i;:::-;36318:23;36330:10;36318:7;:11;;:23;;;;:::i;:::-;36308:33;;36385:30;36404:10;36385:14;;:18;;:30;;;;:::i;:::-;36368:14;:47;;;;36456:6;36447:38;;;36464:8;36474:10;36447:38;;;;;;;;;;;;;;;;;;;;;;;;;;36059:450;;;35934:958;36569:17;36589:8;;36569:28;;36636:1;36624:9;:13;36620:238;;;36666:19;36688:32;36714:5;36688:21;36699:9;36688:6;:10;;:21;;;;:::i;:::-;:25;;:32;;;;:::i;:::-;36666:54;;36747:26;36753:6;36761:11;36747:5;:26::i;:::-;36810:24;36822:11;36810:7;:11;;:24;;;;:::i;:::-;36800:34;;36620:238;;35934:958;;35795:1108;;36915:43;36931:6;36939:9;36950:7;36915:15;:43::i;:::-;36973:20;:18;:20::i;:::-;35364:1637;;;;:::o;9620:200::-;9740:7;9773:1;9768;:6;;9776:12;9760:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9811:1;9807;:5;9800:12;;9620:200;;;;;:::o;27474:294::-;27589:1;27565:26;;:12;:26;;;;27543:121;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27712:12;27680:45;;27708:1;27680:45;;;;;;;;;;;;27748:12;27736:9;;:24;;;;;;;;;;;;;;;;;;27474:294;:::o;23613:91::-;23669:27;23675:12;:10;:12::i;:::-;23689:6;23669:5;:27::i;:::-;23613:91;:::o;24023:332::-;24100:26;24129:121;24180:6;24129:121;;;;;;;;;;;;;;;;;:32;24139:7;24148:12;:10;:12::i;:::-;24129:9;:32::i;:::-;:36;;:121;;;;;:::i;:::-;24100:150;;24263:51;24272:7;24281:12;:10;:12::i;:::-;24295:18;24263:8;:51::i;:::-;24325:22;24331:7;24340:6;24325:5;:22::i;:::-;24023:332;;;:::o;23067:125::-;;;;:::o;7255:158::-;7313:7;7346:1;7341;:6;;7333:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7404:1;7400;:5;7393:12;;7255:158;;;;:::o;19158:610::-;19316:1;19298:20;;:6;:20;;;;19290:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19400:1;19379:23;;:9;:23;;;;19371:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19455:47;19476:6;19484:9;19495:6;19455:20;:47::i;:::-;19535:108;19571:6;19535:108;;;;;;;;;;;;;;;;;:9;:17;19545:6;19535:17;;;;;;;;;;;;;;;;:21;;:108;;;;;:::i;:::-;19515:9;:17;19525:6;19515:17;;;;;;;;;;;;;;;:128;;;;19677:32;19702:6;19677:9;:20;19687:9;19677:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;19654:9;:20;19664:9;19654:20;;;;;;;;;;;;;;;:55;;;;19742:9;19725:35;;19734:6;19725:35;;;19753:6;19725:35;;;;;;;;;;;;;;;;;;19158:610;;;:::o;34704:168::-;34783:30;34795:8;34805:7;34783:11;:30::i;:::-;34839:25;34856:7;34839:12;;:16;;:25;;;;:::i;:::-;34824:12;:40;;;;34704:168;;:::o;32800:198::-;32850:15;32868:6;;;;;;;;;;;32850:24;;32907:1;32888:21;;:7;:21;;;;:50;;;;;32934:4;32913:25;;:17;;;;;;;;;;;:25;;;32888:50;32885:106;;;32962:7;32954:23;;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32950:41;;;;;;32885:106;32800:198;:::o

Swarm Source

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