ETH Price: $3,393.45 (-5.68%)
Gas: 20 Gwei

Token

DefiPulse Index (DPI)
 

Overview

Max Total Supply

206,064.81557551286215844 DPI

Holders

15,367 (0.00%)

Total Transfers

-

Market

Price

$126.35 @ 0.037233 ETH (-0.05%)

Onchain Market Cap

$26,036,031.43

Circulating Supply Market Cap

$0.00

Other Info

Token Contract (WITH 18 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

DeFi Pulse Index - index of decentralized finance that is not a synthetic or a derivative - users own the tokens that constitute the capitalization-weighted index.

Market

Volume (24H):$0.00
Market Capitalization:$0.00
Circulating Supply:0.00 DPI
Market Data Source: Coinmarketcap

# Exchange Pair Price  24H Volume % Volume

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x9F295d05...6A226e4BB
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
SetToken

Compiler Version
v0.6.10+commit.00c0fcaf

Optimization Enabled:
Yes with 200 runs

Other Settings:
istanbul EvmVersion, Apache-2.0 license

Contract Source Code (Solidity)

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

// Dependency file: @openzeppelin/contracts/utils/SafeCast.sol



// pragma solidity ^0.6.0;


/**
 * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow
 * checks.
 *
 * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can
 * easily result in undesired exploitation or bugs, since developers usually
 * assume that overflows raise errors. `SafeCast` restores this intuition by
 * reverting the transaction when such 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.
 *
 * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing
 * all math on `uint256` and `int256` and then downcasting.
 */
library SafeCast {

    /**
     * @dev Returns the downcasted uint128 from uint256, reverting on
     * overflow (when the input is greater than largest uint128).
     *
     * Counterpart to Solidity's `uint128` operator.
     *
     * Requirements:
     *
     * - input must fit into 128 bits
     */
    function toUint128(uint256 value) internal pure returns (uint128) {
        require(value < 2**128, "SafeCast: value doesn\'t fit in 128 bits");
        return uint128(value);
    }

    /**
     * @dev Returns the downcasted uint64 from uint256, reverting on
     * overflow (when the input is greater than largest uint64).
     *
     * Counterpart to Solidity's `uint64` operator.
     *
     * Requirements:
     *
     * - input must fit into 64 bits
     */
    function toUint64(uint256 value) internal pure returns (uint64) {
        require(value < 2**64, "SafeCast: value doesn\'t fit in 64 bits");
        return uint64(value);
    }

    /**
     * @dev Returns the downcasted uint32 from uint256, reverting on
     * overflow (when the input is greater than largest uint32).
     *
     * Counterpart to Solidity's `uint32` operator.
     *
     * Requirements:
     *
     * - input must fit into 32 bits
     */
    function toUint32(uint256 value) internal pure returns (uint32) {
        require(value < 2**32, "SafeCast: value doesn\'t fit in 32 bits");
        return uint32(value);
    }

    /**
     * @dev Returns the downcasted uint16 from uint256, reverting on
     * overflow (when the input is greater than largest uint16).
     *
     * Counterpart to Solidity's `uint16` operator.
     *
     * Requirements:
     *
     * - input must fit into 16 bits
     */
    function toUint16(uint256 value) internal pure returns (uint16) {
        require(value < 2**16, "SafeCast: value doesn\'t fit in 16 bits");
        return uint16(value);
    }

    /**
     * @dev Returns the downcasted uint8 from uint256, reverting on
     * overflow (when the input is greater than largest uint8).
     *
     * Counterpart to Solidity's `uint8` operator.
     *
     * Requirements:
     *
     * - input must fit into 8 bits.
     */
    function toUint8(uint256 value) internal pure returns (uint8) {
        require(value < 2**8, "SafeCast: value doesn\'t fit in 8 bits");
        return uint8(value);
    }

    /**
     * @dev Converts a signed int256 into an unsigned uint256.
     *
     * Requirements:
     *
     * - input must be greater than or equal to 0.
     */
    function toUint256(int256 value) internal pure returns (uint256) {
        require(value >= 0, "SafeCast: value must be positive");
        return uint256(value);
    }

    /**
     * @dev Returns the downcasted int128 from int256, reverting on
     * overflow (when the input is less than smallest int128 or
     * greater than largest int128).
     *
     * Counterpart to Solidity's `int128` operator.
     *
     * Requirements:
     *
     * - input must fit into 128 bits
     *
     * _Available since v3.1._
     */
    function toInt128(int256 value) internal pure returns (int128) {
        require(value >= -2**127 && value < 2**127, "SafeCast: value doesn\'t fit in 128 bits");
        return int128(value);
    }

    /**
     * @dev Returns the downcasted int64 from int256, reverting on
     * overflow (when the input is less than smallest int64 or
     * greater than largest int64).
     *
     * Counterpart to Solidity's `int64` operator.
     *
     * Requirements:
     *
     * - input must fit into 64 bits
     *
     * _Available since v3.1._
     */
    function toInt64(int256 value) internal pure returns (int64) {
        require(value >= -2**63 && value < 2**63, "SafeCast: value doesn\'t fit in 64 bits");
        return int64(value);
    }

    /**
     * @dev Returns the downcasted int32 from int256, reverting on
     * overflow (when the input is less than smallest int32 or
     * greater than largest int32).
     *
     * Counterpart to Solidity's `int32` operator.
     *
     * Requirements:
     *
     * - input must fit into 32 bits
     *
     * _Available since v3.1._
     */
    function toInt32(int256 value) internal pure returns (int32) {
        require(value >= -2**31 && value < 2**31, "SafeCast: value doesn\'t fit in 32 bits");
        return int32(value);
    }

    /**
     * @dev Returns the downcasted int16 from int256, reverting on
     * overflow (when the input is less than smallest int16 or
     * greater than largest int16).
     *
     * Counterpart to Solidity's `int16` operator.
     *
     * Requirements:
     *
     * - input must fit into 16 bits
     *
     * _Available since v3.1._
     */
    function toInt16(int256 value) internal pure returns (int16) {
        require(value >= -2**15 && value < 2**15, "SafeCast: value doesn\'t fit in 16 bits");
        return int16(value);
    }

    /**
     * @dev Returns the downcasted int8 from int256, reverting on
     * overflow (when the input is less than smallest int8 or
     * greater than largest int8).
     *
     * Counterpart to Solidity's `int8` operator.
     *
     * Requirements:
     *
     * - input must fit into 8 bits.
     *
     * _Available since v3.1._
     */
    function toInt8(int256 value) internal pure returns (int8) {
        require(value >= -2**7 && value < 2**7, "SafeCast: value doesn\'t fit in 8 bits");
        return int8(value);
    }

    /**
     * @dev Converts an unsigned uint256 into a signed int256.
     *
     * Requirements:
     *
     * - input must be less than or equal to maxInt256.
     */
    function toInt256(uint256 value) internal pure returns (int256) {
        require(value < 2**255, "SafeCast: value doesn't fit in an int256");
        return int256(value);
    }
}

// Dependency file: @openzeppelin/contracts/token/ERC20/IERC20.sol



// pragma solidity ^0.6.0;

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

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

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

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

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

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

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

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

// Dependency file: @openzeppelin/contracts/GSN/Context.sol



// pragma solidity ^0.6.0;

/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with GSN meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
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;
    }
}

// Dependency file: contracts/lib/AddressArrayUtils.sol

/*
    Copyright 2020 Set Labs Inc.

    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.


*/

// pragma solidity 0.6.10;

/**
 * @title AddressArrayUtils
 * @author Set Protocol
 *
 * Utility functions to handle Address Arrays
 */
library AddressArrayUtils {

    /**
     * Finds the index of the first occurrence of the given element.
     * @param A The input array to search
     * @param a The value to find
     * @return Returns (index and isIn) for the first occurrence starting from index 0
     */
    function indexOf(address[] memory A, address a) internal pure returns (uint256, bool) {
        uint256 length = A.length;
        for (uint256 i = 0; i < length; i++) {
            if (A[i] == a) {
                return (i, true);
            }
        }
        return (uint256(-1), false);
    }

    /**
    * Returns true if the value is present in the list. Uses indexOf internally.
    * @param A The input array to search
    * @param a The value to find
    * @return Returns isIn for the first occurrence starting from index 0
    */
    function contains(address[] memory A, address a) internal pure returns (bool) {
        (, bool isIn) = indexOf(A, a);
        return isIn;
    }

    /**
    * Returns true if there are 2 elements that are the same in an array
    * @param A The input array to search
    * @return Returns boolean for the first occurrence of a duplicate
    */
    function hasDuplicate(address[] memory A) internal pure returns(bool) {
        require(A.length > 0, "A is empty");

        for (uint256 i = 0; i < A.length - 1; i++) {
            address current = A[i];
            for (uint256 j = i + 1; j < A.length; j++) {
                if (current == A[j]) {
                    return true;
                }
            }
        }
        return false;
    }

    /**
     * @param A The input array to search
     * @param a The address to remove     
     * @return Returns the array with the object removed.
     */
    function remove(address[] memory A, address a)
        internal
        pure
        returns (address[] memory)
    {
        (uint256 index, bool isIn) = indexOf(A, a);
        if (!isIn) {
            revert("Address not in array.");
        } else {
            (address[] memory _A,) = pop(A, index);
            return _A;
        }
    }

    /**
    * Removes specified index from array
    * @param A The input array to search
    * @param index The index to remove
    * @return Returns the new array and the removed entry
    */
    function pop(address[] memory A, uint256 index)
        internal
        pure
        returns (address[] memory, address)
    {
        uint256 length = A.length;
        require(index < A.length, "Index must be < A length");
        address[] memory newAddresses = new address[](length - 1);
        for (uint256 i = 0; i < index; i++) {
            newAddresses[i] = A[i];
        }
        for (uint256 j = index + 1; j < length; j++) {
            newAddresses[j - 1] = A[j];
        }
        return (newAddresses, A[index]);
    }
}
// Dependency file: contracts/lib/PreciseUnitMath.sol

/*
    Copyright 2020 Set Labs Inc.

    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.


*/

// pragma solidity 0.6.10;
// pragma experimental ABIEncoderV2;

// import { SafeMath } from "@openzeppelin/contracts/math/SafeMath.sol";
// import { SignedSafeMath } from "@openzeppelin/contracts/math/SignedSafeMath.sol";


/**
 * @title PreciseUnitMath
 * @author Set Protocol
 *
 * Arithmetic for fixed-point numbers with 18 decimals of precision. Some functions taken from
 * dYdX's BaseMath library.
 */
library PreciseUnitMath {
    using SafeMath for uint256;
    using SignedSafeMath for int256;

    // The number One in precise units.
    uint256 constant internal PRECISE_UNIT = 10 ** 18;
    int256 constant internal PRECISE_UNIT_INT = 10 ** 18;

    // Max unsigned integer value
    uint256 constant internal MAX_UINT_256 = type(uint256).max;
    // Max and min signed integer value
    int256 constant internal MAX_INT_256 = type(int256).max;
    int256 constant internal MIN_INT_256 = type(int256).min;

    /**
     * @dev Getter function since constants can't be read directly from libraries.
     */
    function preciseUnit() internal pure returns (uint256) {
        return PRECISE_UNIT;
    }

    /**
     * @dev Getter function since constants can't be read directly from libraries.
     */
    function preciseUnitInt() internal pure returns (int256) {
        return PRECISE_UNIT_INT;
    }

    /**
     * @dev Getter function since constants can't be read directly from libraries.
     */
    function maxUint256() internal pure returns (uint256) {
        return MAX_UINT_256;
    }

    /**
     * @dev Getter function since constants can't be read directly from libraries.
     */
    function maxInt256() internal pure returns (int256) {
        return MAX_INT_256;
    }

    /**
     * @dev Getter function since constants can't be read directly from libraries.
     */
    function minInt256() internal pure returns (int256) {
        return MIN_INT_256;
    }

    /**
     * @dev Multiplies value a by value b (result is rounded down). It's assumed that the value b is the significand
     * of a number with 18 decimals precision.
     */
    function preciseMul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a.mul(b).div(PRECISE_UNIT);
    }

    /**
     * @dev Multiplies value a by value b (result is rounded towards zero). It's assumed that the value b is the
     * significand of a number with 18 decimals precision.
     */
    function preciseMul(int256 a, int256 b) internal pure returns (int256) {
        return a.mul(b).div(PRECISE_UNIT_INT);
    }

    /**
     * @dev Multiplies value a by value b (result is rounded up). It's assumed that the value b is the significand
     * of a number with 18 decimals precision.
     */
    function preciseMulCeil(uint256 a, uint256 b) internal pure returns (uint256) {
        if (a == 0 || b == 0) {
            return 0;
        }
        return a.mul(b).sub(1).div(PRECISE_UNIT).add(1);
    }

    /**
     * @dev Divides value a by value b (result is rounded down).
     */
    function preciseDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        return a.mul(PRECISE_UNIT).div(b);
    }


    /**
     * @dev Divides value a by value b (result is rounded towards 0).
     */
    function preciseDiv(int256 a, int256 b) internal pure returns (int256) {
        return a.mul(PRECISE_UNIT_INT).div(b);
    }

    /**
     * @dev Divides value a by value b (result is rounded up or away from 0).
     */
    function preciseDivCeil(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b != 0, "Cant divide by 0");

        return a > 0 ? a.mul(PRECISE_UNIT).sub(1).div(b).add(1) : 0;
    }

    /**
     * @dev Divides value a by value b (result is rounded down - positive numbers toward 0 and negative away from 0).
     */
    function divDown(int256 a, int256 b) internal pure returns (int256) {
        require(b != 0, "Cant divide by 0");
        require(a != MIN_INT_256 || b != -1, "Invalid input");

        int256 result = a.div(b);
        if (a ^ b < 0 && a % b != 0) {
            result = result.sub(1);
        }

        return result;
    }

    /**
     * @dev Multiplies value a by value b where rounding is towards the lesser number. 
     * (positive values are rounded towards zero and negative values are rounded away from 0). 
     */
    function conservativePreciseMul(int256 a, int256 b) internal pure returns (int256) {
        return divDown(a.mul(b), PRECISE_UNIT_INT);
    }

    /**
     * @dev Divides value a by value b where rounding is towards the lesser number. 
     * (positive values are rounded towards zero and negative values are rounded away from 0). 
     */
    function conservativePreciseDiv(int256 a, int256 b) internal pure returns (int256) {
        return divDown(a.mul(PRECISE_UNIT_INT), b);
    }
}
// Dependency file: contracts/protocol/lib/Position.sol

/*
    Copyright 2020 Set Labs Inc.

    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.


*/

// pragma solidity 0.6.10;
// pragma experimental "ABIEncoderV2";

// import { SafeCast } from "@openzeppelin/contracts/utils/SafeCast.sol";
// import { SafeMath } from "@openzeppelin/contracts/math/SafeMath.sol";
// import { SignedSafeMath } from "@openzeppelin/contracts/math/SignedSafeMath.sol";

// import { ISetToken } from "../../interfaces/ISetToken.sol";
// import { PreciseUnitMath } from "../../lib/PreciseUnitMath.sol";

/**
 * @title Position
 * @author Set Protocol
 *
 * Collection of helper functions for handling and updating SetToken Positions
 */
library Position {
    using SafeCast for uint256;
    using SafeMath for uint256;
    using SafeCast for int256;
    using SignedSafeMath for int256;
    using PreciseUnitMath for uint256;

    /* ============ Helper ============ */

    /**
     * Returns whether the SetToken has a default position for a given component (if the real unit is > 0)
     */
    function hasDefaultPosition(ISetToken _setToken, address _component) internal view returns(bool) {
        return _setToken.getDefaultPositionRealUnit(_component) > 0;
    }

    /**
     * Returns whether the SetToken has an external position for a given component (if # of position modules is > 0)
     */
    function hasExternalPosition(ISetToken _setToken, address _component) internal view returns(bool) {
        return _setToken.getExternalPositionModules(_component).length > 0;
    }
    
    /**
     * Returns whether the SetToken component default position real unit is greater than or equal to units passed in.
     */
    function hasSufficientDefaultUnits(ISetToken _setToken, address _component, uint256 _unit) internal view returns(bool) {
        return _setToken.getDefaultPositionRealUnit(_component) >= _unit.toInt256();
    }

    /**
     * Returns whether the SetToken component external position is greater than or equal to the real units passed in.
     */
    function hasSufficientExternalUnits(
        ISetToken _setToken,
        address _component,
        address _positionModule,
        uint256 _unit
    )
        internal
        view
        returns(bool)
    {
       return _setToken.getExternalPositionRealUnit(_component, _positionModule) >= _unit.toInt256();    
    }

    /**
     * If the position does not exist, create a new Position and add to the SetToken. If it already exists,
     * then set the position units. If the new units is 0, remove the position. Handles adding/removing of 
     * components where needed (in light of potential external positions).
     *
     * @param _setToken           Address of SetToken being modified
     * @param _component          Address of the component
     * @param _newUnit            Quantity of Position units - must be >= 0
     */
    function editDefaultPosition(ISetToken _setToken, address _component, uint256 _newUnit) internal {
        bool isPositionFound = hasDefaultPosition(_setToken, _component);
        if (!isPositionFound && _newUnit > 0) {
            // If there is no Default Position and no External Modules, then component does not exist
            if (!hasExternalPosition(_setToken, _component)) {
                _setToken.addComponent(_component);
            }
        } else if (isPositionFound && _newUnit == 0) {
            // If there is a Default Position and no external positions, remove the component
            if (!hasExternalPosition(_setToken, _component)) {
                _setToken.removeComponent(_component);
            }
        }

        _setToken.editDefaultPositionUnit(_component, _newUnit.toInt256());
    }

    /**
     * Update an external position and remove and external positions or components if necessary. The logic flows as follows:
     * 1) If component is not already added then add component and external position. 
     * 2) If component is added but no existing external position using the passed module exists then add the external position.
     * 3) If the existing position is being added to then just update the unit
     * 4) If the position is being closed and no other external positions or default positions are associated with the component
     *    then untrack the component and remove external position.
     * 5) If the position is being closed and  other existing positions still exist for the component then just remove the
     *    external position.
     *
     * @param _setToken         SetToken being updated
     * @param _component        Component position being updated
     * @param _module           Module external position is associated with
     * @param _newUnit          Position units of new external position
     * @param _data             Arbitrary data associated with the position
     */
    function editExternalPosition(
        ISetToken _setToken,
        address _component,
        address _module,
        int256 _newUnit,
        bytes memory _data
    )
        internal
    {
        if (!_setToken.isComponent(_component)) {
            _setToken.addComponent(_component);
            addExternalPosition(_setToken, _component, _module, _newUnit, _data);
        } else if (!_setToken.isExternalPositionModule(_component, _module)) {
            addExternalPosition(_setToken, _component, _module, _newUnit, _data);
        } else if (_newUnit != 0) {
            _setToken.editExternalPositionUnit(_component, _module, _newUnit);
        } else {
            // If no default or external position remaining then remove component from components array
            if (_setToken.getDefaultPositionRealUnit(_component) == 0 && _setToken.getExternalPositionModules(_component).length == 1) {
                _setToken.removeComponent(_component);
            }
            _setToken.removeExternalPositionModule(_component, _module);
        }
    }

    /**
     * Add a new external position from a previously untracked module.
     *
     * @param _setToken         SetToken being updated
     * @param _component        Component position being updated
     * @param _module           Module external position is associated with
     * @param _newUnit          Position units of new external position
     * @param _data             Arbitrary data associated with the position
     */
    function addExternalPosition(
        ISetToken _setToken,
        address _component,
        address _module,
        int256 _newUnit,
        bytes memory _data
    )
        internal
    {
        _setToken.addExternalPositionModule(_component, _module);
        _setToken.editExternalPositionUnit(_component, _module, _newUnit);
        _setToken.editExternalPositionData(_component, _module, _data);
    }

    /**
     * Get total notional amount of Default position
     *
     * @param _setTokenSupply     Supply of SetToken in precise units (10^18)
     * @param _positionUnit       Quantity of Position units
     *
     * @return                    Total notional amount of units
     */
    function getDefaultTotalNotional(uint256 _setTokenSupply, uint256 _positionUnit) internal pure returns (uint256) {
        return _setTokenSupply.preciseMul(_positionUnit);
    }

    /**
     * Get position unit from total notional amount
     *
     * @param _setTokenSupply     Supply of SetToken in precise units (10^18)
     * @param _totalNotional      Total notional amount of component prior to
     * @return                    Default position unit
     */
    function getDefaultPositionUnit(uint256 _setTokenSupply, uint256 _totalNotional) internal pure returns (uint256) {
        return _totalNotional.preciseDiv(_setTokenSupply);
    }

    /**
     * Calculate the new position unit given total notional values pre and post executing an action that changes SetToken state
     * The intention is to make updates to the units without accidentally picking up airdropped assets as well.
     *
     * @param _setTokenSupply     Supply of SetToken in precise units (10^18)
     * @param _preTotalNotional   Total notional amount of component prior to executing action
     * @param _postTotalNotional  Total notional amount of component after the executing action
     * @param _prePositionUnit    Position unit of SetToken prior to executing action
     * @return                    New position unit
     */
    function calculateDefaultEditPositionUnit(
        uint256 _setTokenSupply,
        uint256 _preTotalNotional,
        uint256 _postTotalNotional,
        uint256 _prePositionUnit
    )
        internal
        pure
        returns (uint256)
    {
        // If pre action total notional amount is greater then subtract post action total notional and calculate new position units
        if (_preTotalNotional >= _postTotalNotional) {
            uint256 unitsToSub = _preTotalNotional.sub(_postTotalNotional).preciseDivCeil(_setTokenSupply);
            return _prePositionUnit.sub(unitsToSub);
        } else {
            // Else subtract post action total notional from pre action total notional and calculate new position units
            uint256 unitsToAdd = _postTotalNotional.sub(_preTotalNotional).preciseDiv(_setTokenSupply);
            return _prePositionUnit.add(unitsToAdd);
        }
    }
}

// Dependency file: contracts/interfaces/ISetToken.sol

/*
    Copyright 2020 Set Labs Inc.

    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.


*/
// pragma solidity 0.6.10;
// pragma experimental "ABIEncoderV2";

// import { IERC20 } from "@openzeppelin/contracts/token/ERC20/IERC20.sol";

/**
 * @title ISetToken
 * @author Set Protocol
 *
 * Interface for operating with SetTokens.
 */
interface ISetToken is IERC20 {

    /* ============ Enums ============ */

    enum ModuleState {
        NONE,
        PENDING,
        INITIALIZED
    }

    /* ============ Structs ============ */
    /**
     * The base definition of a SetToken Position
     *
     * @param component           Address of token in the Position
     * @param module              If not in default state, the address of associated module
     * @param unit                Each unit is the # of components per 10^18 of a SetToken
     * @param positionState       Position ENUM. Default is 0; External is 1
     * @param data                Arbitrary data
     */
    struct Position {
        address component;
        address module;
        int256 unit;
        uint8 positionState;
        bytes data;
    }

    /**
     * A struct that stores a component's cash position details and external positions
     * This data structure allows O(1) access to a component's cash position units and 
     * virtual units.
     *
     * @param virtualUnit               Virtual value of a component's DEFAULT position. Stored as virtual for efficiency
     *                                  updating all units at once via the position multiplier. Virtual units are achieved
     *                                  by dividing a "real" value by the "positionMultiplier"
     * @param componentIndex            
     * @param externalPositionModules   List of external modules attached to each external position. Each module
     *                                  maps to an external position
     * @param externalPositions         Mapping of module => ExternalPosition struct for a given component
     */
    struct ComponentPosition {
      int256 virtualUnit;
      address[] externalPositionModules;
      mapping(address => ExternalPosition) externalPositions;
    }

    /**
     * A struct that stores a component's external position details including virtual unit and any
     * auxiliary data.
     *
     * @param virtualUnit       Virtual value of a component's EXTERNAL position.
     * @param data              Arbitrary data
     */
    struct ExternalPosition {
      int256 virtualUnit;
      bytes data;
    }


    /* ============ Functions ============ */
    
    function addComponent(address _component) external;
    function removeComponent(address _component) external;
    function editDefaultPositionUnit(address _component, int256 _realUnit) external;
    function addExternalPositionModule(address _component, address _positionModule) external;
    function removeExternalPositionModule(address _component, address _positionModule) external;
    function editExternalPositionUnit(address _component, address _positionModule, int256 _realUnit) external;
    function editExternalPositionData(address _component, address _positionModule, bytes calldata _data) external;

    function invoke(address _target, uint256 _value, bytes calldata _data) external returns(bytes memory);

    function editPositionMultiplier(int256 _newMultiplier) external;

    function mint(address _account, uint256 _quantity) external;
    function burn(address _account, uint256 _quantity) external;

    function lock() external;
    function unlock() external;

    function addModule(address _module) external;
    function removeModule(address _module) external;
    function initializeModule() external;

    function setManager(address _manager) external;

    function manager() external view returns (address);
    function moduleStates(address _module) external view returns (ModuleState);
    function getModules() external view returns (address[] memory);
    
    function getDefaultPositionRealUnit(address _component) external view returns(int256);
    function getExternalPositionRealUnit(address _component, address _positionModule) external view returns(int256);
    function getComponents() external view returns(address[] memory);
    function getExternalPositionModules(address _component) external view returns(address[] memory);
    function getExternalPositionData(address _component, address _positionModule) external view returns(bytes memory);
    function isExternalPositionModule(address _component, address _module) external view returns(bool);
    function isComponent(address _component) external view returns(bool);
    
    function positionMultiplier() external view returns (int256);
    function getPositions() external view returns (Position[] memory);
    function getTotalComponentRealUnits(address _component) external view returns(int256);

    function isInitializedModule(address _module) external view returns(bool);
    function isPendingModule(address _module) external view returns(bool);
    function isLocked() external view returns (bool);
}
// Dependency file: contracts/interfaces/IModule.sol

/*
    Copyright 2020 Set Labs Inc.

    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.


*/
// pragma solidity 0.6.10;


/**
 * @title IModule
 * @author Set Protocol
 *
 * Interface for interacting with Modules.
 */
interface IModule {
    /**
     * Called by a SetToken to notify that this module was removed from the Set token. Any logic can be included
     * in case checks need to be made or state needs to be cleared.
     */
    function removeModule() external;
}
// Dependency file: contracts/interfaces/IController.sol

/*
    Copyright 2020 Set Labs Inc.

    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.


*/
// pragma solidity 0.6.10;

interface IController {
    function addSet(address _setToken) external;
    function getModuleFee(address _module, uint256 _feeType) external view returns(uint256);
    function resourceId(uint256 _id) external view returns(address);
    function feeRecipient() external view returns(address);
    function isModule(address _module) external view returns(bool);
    function isSet(address _setToken) external view returns(bool);
    function isSystemContract(address _contractAddress) external view returns (bool);
}
// Dependency file: @openzeppelin/contracts/math/SignedSafeMath.sol



// pragma solidity ^0.6.0;

/**
 * @title SignedSafeMath
 * @dev Signed math operations with safety checks that revert on error.
 */
library SignedSafeMath {
    int256 constant private _INT256_MIN = -2**255;

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

        require(!(a == -1 && b == _INT256_MIN), "SignedSafeMath: multiplication overflow");

        int256 c = a * b;
        require(c / a == b, "SignedSafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two signed integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(int256 a, int256 b) internal pure returns (int256) {
        require(b != 0, "SignedSafeMath: division by zero");
        require(!(b == -1 && a == _INT256_MIN), "SignedSafeMath: division overflow");

        int256 c = a / b;

        return c;
    }

    /**
     * @dev Returns the subtraction of two signed integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a - b;
        require((b >= 0 && c <= a) || (b < 0 && c > a), "SignedSafeMath: subtraction overflow");

        return c;
    }

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

        return c;
    }
}

// Dependency file: @openzeppelin/contracts/math/SafeMath.sol



// pragma solidity ^0.6.0;

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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

// Dependency file: @openzeppelin/contracts/token/ERC20/ERC20.sol



// pragma solidity ^0.6.0;

// import "../../GSN/Context.sol";
// import "./IERC20.sol";
// import "../../math/SafeMath.sol";
// import "../../utils/Address.sol";

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

    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 returns (string memory) {
        return _name;
    }

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

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5,05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. 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 returns (uint8) {
        return _decimals;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view 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 is internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 amount) internal 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 {
        _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 { }
}

// Dependency file: @openzeppelin/contracts/utils/Address.sol



// pragma solidity ^0.6.2;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [// importANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // According to EIP-1052, 0x0 is the value returned for not-yet created accounts
        // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
        // for accounts without code, i.e. `keccak256('')`
        bytes32 codehash;
        bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
        // solhint-disable-next-line no-inline-assembly
        assembly { codehash := extcodehash(account) }
        return (codehash != accountHash && codehash != 0x0);
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * // importANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain`call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
      return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        return _functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        return _functionCallWithValue(target, data, value, errorMessage);
    }

    function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) {
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: weiValue }(data);
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

/*
    Copyright 2020 Set Labs Inc.

    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.


*/

pragma solidity 0.6.10;
pragma experimental "ABIEncoderV2";

// import { Address } from "@openzeppelin/contracts/utils/Address.sol";
// import { ERC20 } from "@openzeppelin/contracts/token/ERC20/ERC20.sol";
// import { SafeMath } from "@openzeppelin/contracts/math/SafeMath.sol";
// import { SignedSafeMath } from "@openzeppelin/contracts/math/SignedSafeMath.sol";

// import { IController } from "../interfaces/IController.sol";
// import { IModule } from "../interfaces/IModule.sol";
// import { ISetToken } from "../interfaces/ISetToken.sol";
// import { Position } from "./lib/Position.sol";
// import { PreciseUnitMath } from "../lib/PreciseUnitMath.sol";
// import { AddressArrayUtils } from "../lib/AddressArrayUtils.sol";


/**
 * @title SetToken
 * @author Set Protocol
 *
 * ERC20 Token contract that allows privileged modules to make modifications to its positions and invoke function calls
 * from the SetToken. 
 */
contract SetToken is ERC20 {
    using SafeMath for uint256;
    using SignedSafeMath for int256;
    using PreciseUnitMath for int256;
    using Address for address;
    using AddressArrayUtils for address[];

    /* ============ Constants ============ */

    /*
        The PositionState is the status of the Position, whether it is Default (held on the SetToken)
        or otherwise held on a separate smart contract (whether a module or external source).
        There are issues with cross-usage of enums, so we are defining position states
        as a uint8.
    */
    uint8 internal constant DEFAULT = 0;
    uint8 internal constant EXTERNAL = 1;

    /* ============ Events ============ */

    event Invoked(address indexed _target, uint indexed _value, bytes _data, bytes _returnValue);
    event ModuleAdded(address indexed _module);
    event ModuleRemoved(address indexed _module);    
    event ModuleInitialized(address indexed _module);
    event ManagerEdited(address _newManager, address _oldManager);
    event PendingModuleRemoved(address indexed _module);
    event PositionMultiplierEdited(int256 _newMultiplier);
    event ComponentAdded(address indexed _component);
    event ComponentRemoved(address indexed _component);
    event DefaultPositionUnitEdited(address indexed _component, int256 _realUnit);
    event ExternalPositionUnitEdited(address indexed _component, address indexed _positionModule, int256 _realUnit);
    event ExternalPositionDataEdited(address indexed _component, address indexed _positionModule, bytes _data);
    event PositionModuleAdded(address indexed _component, address indexed _positionModule);
    event PositionModuleRemoved(address indexed _component, address indexed _positionModule);

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

    /**
     * Throws if the sender is not a SetToken's module or module not enabled
     */
    modifier onlyModule() {
        // Internal function used to reduce bytecode size
        _validateOnlyModule();
        _;
    }

    /**
     * Throws if the sender is not the SetToken's manager
     */
    modifier onlyManager() {
        _validateOnlyManager();
        _;
    }

    /**
     * Throws if SetToken is locked and called by any account other than the locker.
     */
    modifier whenLockedOnlyLocker() {
        _validateWhenLockedOnlyLocker();
        _;
    }

    /* ============ State Variables ============ */

    // Address of the controller
    IController public controller;

    // The manager has the privelege to add modules, remove, and set a new manager
    address public manager;

    // A module that has locked other modules from privileged functionality, typically required
    // for multi-block module actions such as auctions
    address public locker;

    // List of initialized Modules; Modules extend the functionality of SetTokens
    address[] public modules;

    // Modules are initialized from NONE -> PENDING -> INITIALIZED through the
    // addModule (called by manager) and initialize  (called by module) functions
    mapping(address => ISetToken.ModuleState) public moduleStates;

    // When locked, only the locker (a module) can call privileged functionality
    // Typically utilized if a module (e.g. Auction) needs multiple transactions to complete an action
    // without interruption
    bool public isLocked;

    // List of components
    address[] public components;

    // Mapping that stores all Default and External position information for a given component.
    // Position quantities are represented as virtual units; Default positions are on the top-level,
    // while external positions are stored in a module array and accessed through its externalPositions mapping
    mapping(address => ISetToken.ComponentPosition) private componentPositions;

    // The multiplier applied to the virtual position unit to achieve the real/actual unit.
    // This multiplier is used for efficiently modifying the entire position units (e.g. streaming fee)
    int256 public positionMultiplier;


    /* ============ Constructor ============ */

    /**
     * When a new SetToken is created, initializes Positions in default state and adds modules into pending state.
     * All parameter validations are on the SetTokenCreator contract. Validations are performed already on the 
     * SetTokenCreator. Initiates the positionMultiplier as 1e18 (no adjustments).
     *
     * @param _components             List of addresses of components for initial Positions
     * @param _units                  List of units. Each unit is the # of components per 10^18 of a SetToken
     * @param _modules                List of modules to enable. All modules must be approved by the Controller
     * @param _controller             Address of the controller
     * @param _manager                Address of the manager
     * @param _name                   Name of the SetToken
     * @param _symbol                 Symbol of the SetToken
     */
    constructor(
        address[] memory _components,
        int256[] memory _units,
        address[] memory _modules,
        IController _controller,
        address _manager,
        string memory _name,
        string memory _symbol
    )
        public
        ERC20(_name, _symbol)
    {
        controller = _controller;
        manager = _manager;
        positionMultiplier = PreciseUnitMath.preciseUnitInt();
        components = _components;

        // Modules are put in PENDING state, as they need to be individually initialized by the Module
        for (uint256 i = 0; i < _modules.length; i++) {
            moduleStates[_modules[i]] = ISetToken.ModuleState.PENDING;
        }

        // Positions are put in default state initially
        for (uint256 j = 0; j < _components.length; j++) {
            componentPositions[_components[j]].virtualUnit = _units[j];
        }
    }

    /* ============ External Functions ============ */

    /**
     * PRIVELEGED MODULE FUNCTION. Low level function that allows a module to make an arbitrary function
     * call to any contract.
     *
     * @param _target                 Address of the smart contract to call
     * @param _value                  Quantity of Ether to provide the call (typically 0)
     * @param _data                   Encoded function selector and arguments
     * @return _returnValue           Bytes encoded return value
     */
    function invoke(
        address _target,
        uint256 _value,
        bytes calldata _data
    )
        external
        onlyModule
        whenLockedOnlyLocker
        returns (bytes memory _returnValue)
    {
        _returnValue = _target.functionCallWithValue(_data, _value);

        emit Invoked(_target, _value, _data, _returnValue);

        return _returnValue;
    }

    /**
     * PRIVELEGED MODULE FUNCTION. Low level function that adds a component to the components array.
     */
    function addComponent(address _component) external onlyModule whenLockedOnlyLocker {
        components.push(_component);

        emit ComponentAdded(_component);
    }

    /**
     * PRIVELEGED MODULE FUNCTION. Low level function that removes a component from the components array.
     */
    function removeComponent(address _component) external onlyModule whenLockedOnlyLocker {
        components = components.remove(_component);

        emit ComponentRemoved(_component);
    }

    /**
     * PRIVELEGED MODULE FUNCTION. Low level function that edits a component's virtual unit. Takes a real unit
     * and converts it to virtual before committing.
     */
    function editDefaultPositionUnit(address _component, int256 _realUnit) external onlyModule whenLockedOnlyLocker {
        int256 virtualUnit = _convertRealToVirtualUnit(_realUnit);

        // These checks ensure that the virtual unit does not return a result that has rounded down to 0
        if (_realUnit > 0 && virtualUnit == 0) {
            revert("Virtual unit conversion invalid");
        }

        componentPositions[_component].virtualUnit = virtualUnit;

        emit DefaultPositionUnitEdited(_component, _realUnit);
    }

    /**
     * PRIVELEGED MODULE FUNCTION. Low level function that adds a module to a component's externalPositionModules array
     */
    function addExternalPositionModule(address _component, address _positionModule) external onlyModule whenLockedOnlyLocker {
        componentPositions[_component].externalPositionModules.push(_positionModule);

        emit PositionModuleAdded(_component, _positionModule);
    }

    /**
     * PRIVELEGED MODULE FUNCTION. Low level function that removes a module from a component's 
     * externalPositionModules array and deletes the associated externalPosition.
     */
    function removeExternalPositionModule(
        address _component,
        address _positionModule
    )
        external
        onlyModule
        whenLockedOnlyLocker
    {
        componentPositions[_component].externalPositionModules = _externalPositionModules(_component).remove(_positionModule);
        delete componentPositions[_component].externalPositions[_positionModule];

        emit PositionModuleRemoved(_component, _positionModule);
    }

    /**
     * PRIVELEGED MODULE FUNCTION. Low level function that edits a component's external position virtual unit. 
     * Takes a real unit and converts it to virtual before committing.
     */
    function editExternalPositionUnit(
        address _component,
        address _positionModule,
        int256 _realUnit
    )
        external
        onlyModule
        whenLockedOnlyLocker
    {
        int256 virtualUnit = _convertRealToVirtualUnit(_realUnit);

        // These checks ensure that the virtual unit does not return a result that has rounded to 0
        if ((_realUnit > 0 && virtualUnit == 0)) {
            revert("Virtual unit conversion invalid");
        }

        componentPositions[_component].externalPositions[_positionModule].virtualUnit = virtualUnit;

        emit ExternalPositionUnitEdited(_component, _positionModule, _realUnit);
    }

    /**
     * PRIVELEGED MODULE FUNCTION. Low level function that edits a component's external position data
     */
    function editExternalPositionData(
        address _component,
        address _positionModule,
        bytes calldata _data
    )
        external
        onlyModule
        whenLockedOnlyLocker
    {
        componentPositions[_component].externalPositions[_positionModule].data = _data;

        emit ExternalPositionDataEdited(_component, _positionModule, _data);
    }

    /**
     * PRIVELEGED MODULE FUNCTION. Modifies the position multiplier. This is typically used to efficiently
     * update all the Positions' units at once in applications where inflation is awarded (e.g. subscription fees).
     */
    function editPositionMultiplier(int256 _newMultiplier) external onlyModule whenLockedOnlyLocker {
        require(_newMultiplier > 0, "Must be greater than 0");

        positionMultiplier = _newMultiplier;

        emit PositionMultiplierEdited(_newMultiplier);
    }

    /**
     * PRIVELEGED MODULE FUNCTION. Increases the "account" balance by the "quantity".
     */
    function mint(address _account, uint256 _quantity) external onlyModule whenLockedOnlyLocker {
        _mint(_account, _quantity);
    }

    /**
     * PRIVELEGED MODULE FUNCTION. Decreases the "account" balance by the "quantity".
     * _burn checks that the "account" already has the required "quantity".
     */
    function burn(address _account, uint256 _quantity) external onlyModule whenLockedOnlyLocker {
        _burn(_account, _quantity);
    }

    /**
     * PRIVELEGED MODULE FUNCTION. When a SetToken is locked, only the locker can call privileged functions.
     */
    function lock() external onlyModule {
        require(!isLocked, "Must not be locked");
        locker = msg.sender;
        isLocked = true;
    }

    /**
     * PRIVELEGED MODULE FUNCTION. Unlocks the SetToken and clears the locker
     */
    function unlock() external onlyModule {
        require(isLocked, "Must be locked");
        require(locker == msg.sender, "Must be locker");
        delete locker;
        isLocked = false;
    }

    /**
     * MANAGER ONLY. Adds a module into a PENDING state; Module must later be initialized via 
     * module's initialize function
     */
    function addModule(address _module) external onlyManager {
        require(moduleStates[_module] == ISetToken.ModuleState.NONE, "Module must not be added");
        require(controller.isModule(_module), "Must be enabled on Controller");

        moduleStates[_module] = ISetToken.ModuleState.PENDING;

        emit ModuleAdded(_module);
    }

    /**
     * MANAGER ONLY. Removes a module from the SetToken. SetToken calls removeModule on module itself to confirm
     * it is not needed to manage any remaining positions and to remove state.
     */
    function removeModule(address _module) external onlyManager {
        require(!isLocked, "Only when unlocked");
        require(moduleStates[_module] == ISetToken.ModuleState.INITIALIZED, "Module must be added");

        IModule(_module).removeModule();

        moduleStates[_module] = ISetToken.ModuleState.NONE;

        modules = modules.remove(_module);

        emit ModuleRemoved(_module);
    }

    /**
     * MANAGER ONLY. Removes a pending module from the SetToken.
     */
    function removePendingModule(address _module) external onlyManager {
        require(!isLocked, "Only when unlocked");
        require(moduleStates[_module] == ISetToken.ModuleState.PENDING, "Module must be pending");

        moduleStates[_module] = ISetToken.ModuleState.NONE;

        emit PendingModuleRemoved(_module);
    }

    /**
     * Initializes an added module from PENDING to INITIALIZED state. Can only call when unlocked.
     * An address can only enter a PENDING state if it is an enabled module added by the manager.
     * Only callable by the module itself, hence msg.sender is the subject of update.
     */
    function initializeModule() external {
        require(!isLocked, "Only when unlocked");
        require(moduleStates[msg.sender] == ISetToken.ModuleState.PENDING, "Module must be pending");
        
        moduleStates[msg.sender] = ISetToken.ModuleState.INITIALIZED;
        modules.push(msg.sender);

        emit ModuleInitialized(msg.sender);
    }

    /**
     * MANAGER ONLY. Changes manager; We allow null addresses in case the manager wishes to wind down the SetToken.
     * Modules may rely on the manager state, so only changable when unlocked
     */
    function setManager(address _manager) external onlyManager {
        require(!isLocked, "Only when unlocked");
        address oldManager = manager;
        manager = _manager;

        emit ManagerEdited(_manager, oldManager);
    }

    /* ============ External Getter Functions ============ */

    function getComponents() external view returns(address[] memory) {
        return components;
    }

    function getDefaultPositionRealUnit(address _component) public view returns(int256) {
        return _convertVirtualToRealUnit(_defaultPositionVirtualUnit(_component));
    }

    function getExternalPositionRealUnit(address _component, address _positionModule) public view returns(int256) {
        return _convertVirtualToRealUnit(_externalPositionVirtualUnit(_component, _positionModule));
    }

    function getExternalPositionModules(address _component) external view returns(address[] memory) {
        return _externalPositionModules(_component);
    }

    function getExternalPositionData(address _component,address _positionModule) external view returns(bytes memory) {
        return _externalPositionData(_component, _positionModule);
    }

    function getModules() external view returns (address[] memory) {
        return modules;
    }

    function isComponent(address _component) external view returns(bool) {
        return components.contains(_component);
    }

    function isExternalPositionModule(address _component, address _module) external view returns(bool) {
        return _externalPositionModules(_component).contains(_module);
    }

    /**
     * Only ModuleStates of INITIALIZED modules are considered enabled
     */
    function isInitializedModule(address _module) external view returns (bool) {
        return moduleStates[_module] == ISetToken.ModuleState.INITIALIZED;
    }

    /**
     * Returns whether the module is in a pending state
     */
    function isPendingModule(address _module) external view returns (bool) {
        return moduleStates[_module] == ISetToken.ModuleState.PENDING;
    }

    /**
     * Returns a list of Positions, through traversing the components. Each component with a non-zero virtual unit
     * is considered a Default Position, and each externalPositionModule will generate a unique position.
     * Virtual units are converted to real units. This function is typically used off-chain for data presentation purposes.
     */
    function getPositions() external view returns (ISetToken.Position[] memory) {
        ISetToken.Position[] memory positions = new ISetToken.Position[](_getPositionCount());
        uint256 positionCount = 0;

        for (uint256 i = 0; i < components.length; i++) {
            address component = components[i];

            // A default position exists if the default virtual unit is > 0
            if (_defaultPositionVirtualUnit(component) > 0) {
                positions[positionCount] = ISetToken.Position({
                    component: component,
                    module: address(0),
                    unit: getDefaultPositionRealUnit(component),
                    positionState: DEFAULT,
                    data: ""
                });

                positionCount++;
            }

            address[] memory externalModules = _externalPositionModules(component);
            for (uint256 j = 0; j < externalModules.length; j++) {
                address currentModule = externalModules[j];

                positions[positionCount] = ISetToken.Position({
                    component: component,
                    module: currentModule,
                    unit: getExternalPositionRealUnit(component, currentModule),
                    positionState: EXTERNAL,
                    data: _externalPositionData(component, currentModule)
                });

                positionCount++;
            }
        }

        return positions;
    }

    /**
     * Returns the total Real Units for a given component, summing the default and external position units.
     */
    function getTotalComponentRealUnits(address _component) external view returns(int256) {
        int256 totalUnits = getDefaultPositionRealUnit(_component);

		address[] memory externalModules = _externalPositionModules(_component);
		for (uint256 i = 0; i < externalModules.length; i++) {
            // We will perform the summation no matter what, as an external position virtual unit can be negative
			totalUnits = totalUnits.add(getExternalPositionRealUnit(_component, externalModules[i]));
		}

		return totalUnits;
    }


    receive() external payable {} // solium-disable-line quotes

    /* ============ Internal Functions ============ */

    function _defaultPositionVirtualUnit(address _component) internal view returns(int256) {
    	return componentPositions[_component].virtualUnit;
    }

    function _externalPositionModules(address _component) internal view returns(address[] memory) {
    	return componentPositions[_component].externalPositionModules;
    }

    function _externalPositionVirtualUnit(address _component, address _module) internal view returns(int256) {
    	return componentPositions[_component].externalPositions[_module].virtualUnit;
    }

    function _externalPositionData(address _component, address _module) internal view returns(bytes memory) {
    	return componentPositions[_component].externalPositions[_module].data;
    }

    /**
     * Takes a real unit and divides by the position multiplier to return the virtual unit
     */
    function _convertRealToVirtualUnit(int256 _realUnit) internal view returns(int256) {
        return _realUnit.conservativePreciseDiv(positionMultiplier);
    }

    /**
     * Takes a virtual unit and multiplies by the position multiplier to return the real unit
     */
    function _convertVirtualToRealUnit(int256 _virtualUnit) internal view returns(int256) {
        return _virtualUnit.conservativePreciseMul(positionMultiplier);
    }

    /**
     * Gets the total number of positions, defined as the following:
     * - Each component has a default position if its virtual unit is > 0
     * - Each component's external positions module is counted as a position
     */
    function _getPositionCount() internal view returns (uint256) {
        uint256 positionCount;
        for (uint256 i = 0; i < components.length; i++) {
            address component = components[i];

            // Increment the position count if the default position is > 0
            if (_defaultPositionVirtualUnit(component) > 0) {
                positionCount++;
            }

            // Increment the position count by each external position module
            address[] memory externalModules = _externalPositionModules(component);
            if (externalModules.length > 0) {
            	positionCount = positionCount.add(externalModules.length);	
            }
        }

        return positionCount;
    }

    /**
     * Due to reason error bloat, internal functions are used to reduce bytecode size
     *
     * Module must be initialized on the SetToken and enabled by the controller
     */
    function _validateOnlyModule() internal view {
        require(
            moduleStates[msg.sender] == ISetToken.ModuleState.INITIALIZED,
            "Only the module can call"
        );

        require(
            controller.isModule(msg.sender),
            "Module must be enabled on controller"
        );
    }

    function _validateOnlyManager() internal view {
        require(msg.sender == manager, "Only manager can call");
    }

    function _validateWhenLockedOnlyLocker() internal view {
        if (isLocked) {
            require(msg.sender == locker, "When locked, only the locker can call");
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address[]","name":"_components","type":"address[]"},{"internalType":"int256[]","name":"_units","type":"int256[]"},{"internalType":"address[]","name":"_modules","type":"address[]"},{"internalType":"contract IController","name":"_controller","type":"address"},{"internalType":"address","name":"_manager","type":"address"},{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"}],"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":"_component","type":"address"}],"name":"ComponentAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_component","type":"address"}],"name":"ComponentRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_component","type":"address"},{"indexed":false,"internalType":"int256","name":"_realUnit","type":"int256"}],"name":"DefaultPositionUnitEdited","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_component","type":"address"},{"indexed":true,"internalType":"address","name":"_positionModule","type":"address"},{"indexed":false,"internalType":"bytes","name":"_data","type":"bytes"}],"name":"ExternalPositionDataEdited","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_component","type":"address"},{"indexed":true,"internalType":"address","name":"_positionModule","type":"address"},{"indexed":false,"internalType":"int256","name":"_realUnit","type":"int256"}],"name":"ExternalPositionUnitEdited","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_target","type":"address"},{"indexed":true,"internalType":"uint256","name":"_value","type":"uint256"},{"indexed":false,"internalType":"bytes","name":"_data","type":"bytes"},{"indexed":false,"internalType":"bytes","name":"_returnValue","type":"bytes"}],"name":"Invoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_newManager","type":"address"},{"indexed":false,"internalType":"address","name":"_oldManager","type":"address"}],"name":"ManagerEdited","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_module","type":"address"}],"name":"ModuleAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_module","type":"address"}],"name":"ModuleInitialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_module","type":"address"}],"name":"ModuleRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_module","type":"address"}],"name":"PendingModuleRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_component","type":"address"},{"indexed":true,"internalType":"address","name":"_positionModule","type":"address"}],"name":"PositionModuleAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_component","type":"address"},{"indexed":true,"internalType":"address","name":"_positionModule","type":"address"}],"name":"PositionModuleRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"int256","name":"_newMultiplier","type":"int256"}],"name":"PositionMultiplierEdited","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":"_component","type":"address"}],"name":"addComponent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_component","type":"address"},{"internalType":"address","name":"_positionModule","type":"address"}],"name":"addExternalPositionModule","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_module","type":"address"}],"name":"addModule","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"components","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"controller","outputs":[{"internalType":"contract IController","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_component","type":"address"},{"internalType":"int256","name":"_realUnit","type":"int256"}],"name":"editDefaultPositionUnit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_component","type":"address"},{"internalType":"address","name":"_positionModule","type":"address"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"editExternalPositionData","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_component","type":"address"},{"internalType":"address","name":"_positionModule","type":"address"},{"internalType":"int256","name":"_realUnit","type":"int256"}],"name":"editExternalPositionUnit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"int256","name":"_newMultiplier","type":"int256"}],"name":"editPositionMultiplier","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getComponents","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_component","type":"address"}],"name":"getDefaultPositionRealUnit","outputs":[{"internalType":"int256","name":"","type":"int256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_component","type":"address"},{"internalType":"address","name":"_positionModule","type":"address"}],"name":"getExternalPositionData","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_component","type":"address"}],"name":"getExternalPositionModules","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_component","type":"address"},{"internalType":"address","name":"_positionModule","type":"address"}],"name":"getExternalPositionRealUnit","outputs":[{"internalType":"int256","name":"","type":"int256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getModules","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPositions","outputs":[{"components":[{"internalType":"address","name":"component","type":"address"},{"internalType":"address","name":"module","type":"address"},{"internalType":"int256","name":"unit","type":"int256"},{"internalType":"uint8","name":"positionState","type":"uint8"},{"internalType":"bytes","name":"data","type":"bytes"}],"internalType":"struct ISetToken.Position[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_component","type":"address"}],"name":"getTotalComponentRealUnits","outputs":[{"internalType":"int256","name":"","type":"int256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"initializeModule","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_target","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"invoke","outputs":[{"internalType":"bytes","name":"_returnValue","type":"bytes"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_component","type":"address"}],"name":"isComponent","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_component","type":"address"},{"internalType":"address","name":"_module","type":"address"}],"name":"isExternalPositionModule","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_module","type":"address"}],"name":"isInitializedModule","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isLocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_module","type":"address"}],"name":"isPendingModule","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"locker","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manager","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"moduleStates","outputs":[{"internalType":"enum ISetToken.ModuleState","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"modules","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"positionMultiplier","outputs":[{"internalType":"int256","name":"","type":"int256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_component","type":"address"}],"name":"removeComponent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_component","type":"address"},{"internalType":"address","name":"_positionModule","type":"address"}],"name":"removeExternalPositionModule","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_module","type":"address"}],"name":"removeModule","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_module","type":"address"}],"name":"removePendingModule","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_manager","type":"address"}],"name":"setManager","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":[],"name":"unlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040523480156200001157600080fd5b5060405162003cb938038062003cb9833981016040819052620000349162000476565b8151829082906200004d906003906020850190620001bf565b50805162000063906004906020840190620001bf565b505060058054601260ff1990911617610100600160a81b0319166101006001600160a01b038881169190910291909117909155600680546001600160a01b03191691861691909117905550620000c4620001b2602090811b62001b9517901c565b600d558651620000dc90600b9060208a019062000244565b5060005b85518110156200014357600160096000888481518110620000fd57fe5b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191660018360028111156200013557fe5b0217905550600101620000e0565b5060005b8751811015620001a4578681815181106200015e57fe5b6020026020010151600c60008a84815181106200017757fe5b6020908102919091018101516001600160a01b031682528101919091526040016000205560010162000147565b5050505050505050620005d8565b670de0b6b3a76400005b90565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200020257805160ff191683800117855562000232565b8280016001018555821562000232579182015b828111156200023257825182559160200191906001019062000215565b5062000240929150620002aa565b5090565b8280548282559060005260206000209081019282156200029c579160200282015b828111156200029c57825182546001600160a01b0319166001600160a01b0390911617825560209092019160019091019062000265565b5062000240929150620002c7565b620001bc91905b80821115620002405760008155600101620002b1565b620001bc91905b80821115620002405780546001600160a01b0319168155600101620002ce565b8051620002fb81620005bf565b92915050565b600082601f83011262000312578081fd5b81516200032962000323826200059f565b62000578565b8181529150602080830190848101818402860182018710156200034b57600080fd5b60005b84811015620003775781516200036481620005bf565b845292820192908201906001016200034e565b505050505092915050565b600082601f83011262000393578081fd5b8151620003a462000323826200059f565b818152915060208083019084810181840286018201871015620003c657600080fd5b60005b848110156200037757815184529282019290820190600101620003c9565b600082601f830112620003f8578081fd5b81516001600160401b038111156200040e578182fd5b602062000424601f8301601f1916820162000578565b925081835284818386010111156200043b57600080fd5b60005b828110156200045b5784810182015184820183015281016200043e565b828111156200046d5760008284860101525b50505092915050565b600080600080600080600060e0888a03121562000491578283fd5b87516001600160401b0380821115620004a8578485fd5b620004b68b838c0162000301565b985060208a0151915080821115620004cc578485fd5b620004da8b838c0162000382565b975060408a0151915080821115620004f0578485fd5b620004fe8b838c0162000301565b96506200050f8b60608c01620002ee565b9550620005208b60808c01620002ee565b945060a08a015191508082111562000536578384fd5b620005448b838c01620003e7565b935060c08a01519150808211156200055a578283fd5b50620005698a828b01620003e7565b91505092959891949750929550565b6040518181016001600160401b03811182821017156200059757600080fd5b604052919050565b60006001600160401b03821115620005b5578081fd5b5060209081020190565b6001600160a01b0381168114620005d557600080fd5b50565b6136d180620005e86000396000f3fe6080604052600436106102b25760003560e01c80638ae458da11610175578063b2494df3116100dc578063d7f1b27c11610095578063ea0ee5591161006f578063ea0ee55914610842578063eaf993e114610862578063f77c479114610882578063f83d08ba14610897576102b9565b8063d7f1b27c146107e2578063dd62ed3e14610802578063df5e9b2914610822576102b9565b8063b2494df314610738578063c2de0e9d1461074d578063c5d574fe1461076d578063c75640171461078d578063d0ebdbe7146107ad578063d7b96d4e146107cd576102b9565b8063a457c2d71161012e578063a457c2d71461068e578063a4e2d634146106ae578063a69df4b5146106c3578063a7bdad03146106d8578063a9059cbb146106f8578063acf3f07714610718576102b9565b80638ae458da146105d75780638f6f0332146105f757806395d89b411461061757806399d50d5d1461062c5780639dc29fac1461064e578063a06324611461066e576102b9565b806340c10f191161021957806366cb8d2f116101d257806366cb8d2f146105155780636f86c8971461053557806370a08231146105555780637d96659314610575578063802758601461059557806381b2248a146105b7576102b9565b806340c10f191461045e578063481c6a751461047e5780634e353270146104a05780635230c396146104c057806353bae5f7146104d557806363a90fc1146104f5576102b9565b806323b872dd1161026b57806323b872dd1461038f57806326898fe1146103af5780632ba57d17146103cf578063313ce567146103ef57806335bc4e5214610411578063395093511461043e576102b9565b806306fdde03146102be578063095ea7b3146102e95780630ffe0f1e1461031657806318160ddd1461032d5780631ed86f191461034f57806322ebeba41461036f576102b9565b366102b957005b600080fd5b3480156102ca57600080fd5b506102d36108ac565b6040516102e09190612e5d565b60405180910390f35b3480156102f557600080fd5b50610309610304366004612bd9565b610943565b6040516102e09190612e0e565b34801561032257600080fd5b5061032b610961565b005b34801561033957600080fd5b50610342610a4b565b6040516102e09190612e84565b34801561035b57600080fd5b5061032b61036a366004612aaa565b610a51565b34801561037b57600080fd5b5061034261038a366004612ac5565b610b89565b34801561039b57600080fd5b506103096103aa366004612b99565b610ba4565b3480156103bb57600080fd5b5061032b6103ca366004612af9565b610c31565b3480156103db57600080fd5b5061032b6103ea366004612bd9565b610ccc565b3480156103fb57600080fd5b50610404610d6c565b6040516102e0919061358a565b34801561041d57600080fd5b5061043161042c366004612aaa565b610d75565b6040516102e09190612e70565b34801561044a57600080fd5b50610309610459366004612bd9565b610d8a565b34801561046a57600080fd5b5061032b610479366004612bd9565b610dde565b34801561048a57600080fd5b50610493610dfc565b6040516102e09190612cef565b3480156104ac57600080fd5b5061032b6104bb366004612aaa565b610e0b565b3480156104cc57600080fd5b50610342610e93565b3480156104e157600080fd5b506103096104f0366004612aaa565b610e99565b34801561050157600080fd5b5061032b610510366004612b5c565b610ecc565b34801561052157600080fd5b50610342610530366004612aaa565b610f73565b34801561054157600080fd5b5061032b610550366004612aaa565b610f81565b34801561056157600080fd5b50610342610570366004612aaa565b61104a565b34801561058157600080fd5b50610309610590366004612ac5565b611065565b3480156105a157600080fd5b506105aa611080565b6040516102e09190612d6a565b3480156105c357600080fd5b506104936105d2366004612c65565b61123d565b3480156105e357600080fd5b506102d36105f2366004612ac5565b611264565b34801561060357600080fd5b506102d3610612366004612c03565b611270565b34801561062357600080fd5b506102d361131e565b34801561063857600080fd5b5061064161137f565b6040516102e09190612d1d565b34801561065a57600080fd5b5061032b610669366004612bd9565b6113e0565b34801561067a57600080fd5b5061032b610689366004612aaa565b6113fa565b34801561069a57600080fd5b506103096106a9366004612bd9565b61159b565b3480156106ba57600080fd5b50610309611609565b3480156106cf57600080fd5b5061032b611612565b3480156106e457600080fd5b506106416106f3366004612aaa565b611682565b34801561070457600080fd5b50610309610713366004612bd9565b61168d565b34801561072457600080fd5b5061032b610733366004612ac5565b6116a1565b34801561074457600080fd5b5061064161177e565b34801561075957600080fd5b5061032b610768366004612c65565b6117de565b34801561077957600080fd5b50610493610788366004612c65565b61184e565b34801561079957600080fd5b5061032b6107a8366004612aaa565b61185b565b3480156107b957600080fd5b5061032b6107c8366004612aaa565b611915565b3480156107d957600080fd5b5061049361199f565b3480156107ee57600080fd5b506103096107fd366004612aaa565b6119ae565b34801561080e57600080fd5b5061034261081d366004612ac5565b6119b7565b34801561082e57600080fd5b5061030961083d366004612aaa565b6119e2565b34801561084e57600080fd5b5061032b61085d366004612ac5565b611a51565b34801561086e57600080fd5b5061034261087d366004612aaa565b611ace565b34801561088e57600080fd5b50610493611b35565b3480156108a357600080fd5b5061032b611b49565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156109385780601f1061090d57610100808354040283529160200191610938565b820191906000526020600020905b81548152906001019060200180831161091b57829003601f168201915b505050505090505b90565b6000610957610950611ba1565b8484611ba5565b5060015b92915050565b600a5460ff161561098d5760405162461bcd60e51b815260040161098490613425565b60405180910390fd5b60013360009081526009602052604090205460ff1660028111156109ad57fe5b146109ca5760405162461bcd60e51b8152600401610984906134f9565b33600081815260096020526040808220805460ff19166002179055600880546001810182559083527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b03191684179055517f27b541a16df0902e262f34789782092ab25125513b8ed73608e802951771b9289190a2565b60025490565b610a59611c59565b6001600160a01b03811660009081526009602052604081205460ff166002811115610a8057fe5b14610a9d5760405162461bcd60e51b815260040161098490612f62565b6005546040516342f6e38960e01b81526101009091046001600160a01b0316906342f6e38990610ad1908490600401612cef565b60206040518083038186803b158015610ae957600080fd5b505afa158015610afd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b219190612c45565b610b3d5760405162461bcd60e51b8152600401610984906131eb565b6001600160a01b038116600081815260096020526040808220805460ff19166001179055517fead6a006345da1073a106d5f32372d2d2204f46cb0b4bca8f5ebafcbbed12b8a9190a250565b6000610b9d610b988484611c85565b611cb4565b9392505050565b6000610bb1848484611ccb565b610c2784610bbd611ba1565b610c228560405180606001604052806028815260200161364f602891396001600160a01b038a16600090815260016020526040812090610bfb611ba1565b6001600160a01b03168152602081019190915260400160002054919063ffffffff611dec16565b611ba5565b5060019392505050565b610c39611e18565b610c41611ef5565b6001600160a01b038085166000908152600c6020908152604080832093871683526002909301905220610c789060010183836128ab565b50826001600160a01b0316846001600160a01b03167fb373eedb8e9038a2dcba31f06b2735887c1a904125e5c9f0021ba41ed972318e8484604051610cbe929190612e19565b60405180910390a350505050565b610cd4611e18565b610cdc611ef5565b6000610ce782611f2a565b9050600082138015610cf7575080155b15610d145760405162461bcd60e51b815260040161098490613099565b6001600160a01b0383166000818152600c602052604090819020839055517f8133e2bf34edab764b55c59d1d41f9df637e7c22828bb6b0a9d55b429d008a9790610d5f908590612e84565b60405180910390a2505050565b60055460ff1690565b60096020526000908152604090205460ff1681565b6000610957610d97611ba1565b84610c228560016000610da8611ba1565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff611f4116565b610de6611e18565b610dee611ef5565b610df88282611f66565b5050565b6006546001600160a01b031681565b610e13611e18565b610e1b611ef5565b600b805460018101825560009182527f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db90180546001600160a01b0319166001600160a01b03841690811790915560405190917f76da6cf8b40dd2b2c223a5956831e0ff4e75522538a86782108a0bbe1577e29891a250565b600d5481565b600060015b6001600160a01b03831660009081526009602052604090205460ff166002811115610ec557fe5b1492915050565b610ed4611e18565b610edc611ef5565b6000610ee782611f2a565b9050600082138015610ef7575080155b15610f145760405162461bcd60e51b815260040161098490613099565b6001600160a01b038085166000818152600c60209081526040808320948816808452600290950190915290819020849055517f81a422e27f503e1b92cdb616a6e653aac10a8e0c3fa6832a58dc616c080fd7bd90610cbe908690612e84565b600061095b610b9883612032565b610f89611e18565b610f91611ef5565b610ffe81600b805480602002602001604051908101604052809291908181526020018280548015610feb57602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311610fcd575b505050505061204d90919063ffffffff16565b805161101291600b91602090910190612929565b506040516001600160a01b038216907fc605d0bf97f9b921340106a2e59f9428d5eb9039b16866159e0cdd2bf8e963df90600090a250565b6001600160a01b031660009081526020819052604090205490565b6000610b9d8261107485612095565b9063ffffffff61210e16565b60608061108b612124565b67ffffffffffffffff811180156110a157600080fd5b506040519080825280602002602001820160405280156110db57816020015b6110c861298a565b8152602001906001900390816110c05790505b5090506000805b600b54811015611235576000600b82815481106110fb57fe5b60009182526020822001546001600160a01b0316915061111a82612032565b1315611189576040805160a0810182526001600160a01b03831681526000602082015290810161114983610f73565b8152602001600060ff1681526020016040518060200160405280600081525081525084848151811061117757fe5b60209081029190910101526001909201915b606061119482612095565b905060005b815181101561122a5760008282815181106111b057fe5b602002602001015190506040518060a00160405280856001600160a01b03168152602001826001600160a01b031681526020016111ed8684610b89565b81526001602082015260400161120386846121a9565b81525087878151811061121257fe5b60209081029190910101525060019485019401611199565b5050506001016110e2565b509091505090565b6008818154811061124a57fe5b6000918252602090912001546001600160a01b0316905081565b6060610b9d83836121a9565b606061127a611e18565b611282611ef5565b6112cd83838080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050506001600160a01b03881691905086612267565b905083856001600160a01b03167f2a936dbabeaea30adc1ddad138b1958497988474bef8b09a29411f0105ab8ab285858560405161130d93929190612e2d565b60405180910390a35b949350505050565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156109385780601f1061090d57610100808354040283529160200191610938565b6060600b80548060200260200160405190810160405280929190818152602001828054801561093857602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116113b9575050505050905090565b6113e8611e18565b6113f0611ef5565b610df8828261228d565b611402611c59565b600a5460ff16156114255760405162461bcd60e51b815260040161098490613425565b60026001600160a01b03821660009081526009602052604090205460ff16600281111561144e57fe5b1461146b5760405162461bcd60e51b8152600401610984906130d0565b806001600160a01b031663847ef08d6040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156114a657600080fd5b505af11580156114ba573d6000803e3d6000fd5b505050506001600160a01b0381166000908152600960205260408120805460ff1916600183021790555061154f816008805480602002602001604051908101604052809291908181526020018280548015610feb576020028201919060005260206000209081546001600160a01b03168152600190910190602001808311610fcd57505050505061204d90919063ffffffff16565b805161156391600891602090910190612929565b506040516001600160a01b038216907f0a1ee69f55c33d8467c69ca59ce2007a737a88603d75392972520bf67cb513b890600090a250565b60006109576115a8611ba1565b84610c228560405180606001604052806025815260200161367760259139600160006115d2611ba1565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff611dec16565b600a5460ff1681565b61161a611e18565b600a5460ff1661163c5760405162461bcd60e51b815260040161098490613269565b6007546001600160a01b031633146116665760405162461bcd60e51b8152600401610984906132f9565b600780546001600160a01b0319169055600a805460ff19169055565b606061095b82612095565b600061095761169a611ba1565b8484611ccb565b6116a9611e18565b6116b1611ef5565b6116ca816116be84612095565b9063ffffffff61204d16565b6001600160a01b0383166000908152600c6020908152604090912082516116fb936001909201929190910190612929565b506001600160a01b038083166000908152600c602090815260408083209385168352600290930190529081208181559061173860018301826129ce565b5050806001600160a01b0316826001600160a01b03167f5d0275f68d583838a7e2be68e3ef8ac2c1f9d4eeaa4b223360f4cd093a160d7560405160405180910390a35050565b60606008805480602002602001604051908101604052809291908181526020018280548015610938576020028201919060005260206000209081546001600160a01b031681526001909101906020018083116113b9575050505050905090565b6117e6611e18565b6117ee611ef5565b6000811361180e5760405162461bcd60e51b8152600401610984906130fe565b600d8190556040517fc4e78b3245dc105eefced18655b978e194ff858545a1080f2888dc3b6ae8df0a90611843908390612e84565b60405180910390a150565b600b818154811061124a57fe5b611863611c59565b600a5460ff16156118865760405162461bcd60e51b815260040161098490613425565b60016001600160a01b03821660009081526009602052604090205460ff1660028111156118af57fe5b146118cc5760405162461bcd60e51b8152600401610984906134f9565b6001600160a01b038116600081815260096020526040808220805460ff19169055517fd6b18042563148f38d728c1c4d339ffd515b632d0ad2e1833b822412f3f4d8779190a250565b61191d611c59565b600a5460ff16156119405760405162461bcd60e51b815260040161098490613425565b600680546001600160a01b038381166001600160a01b03198316179092556040519116907f43fcfef38622d6a5b118be09c27a6ed8cbdbfca21f0ea9245412ce8031c0423c906119939084908490612d03565b60405180910390a15050565b6007546001600160a01b031681565b60006002610e9e565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b600061095b82600b805480602002602001604051908101604052809291908181526020018280548015611a3e57602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311611a20575b505050505061210e90919063ffffffff16565b611a59611e18565b611a61611ef5565b6001600160a01b038281166000818152600c60209081526040808320600190810180549182018155845291832090910180546001600160a01b0319169486169485179055517ff71324fa78e1894b364a1fc8d0535c4208f28c7b380f752afe00c8ce386023fb9190a35050565b600080611ada83610f73565b90506060611ae784612095565b905060005b8151811015611b2c57611b22611b1586848481518110611b0857fe5b6020026020010151610b89565b849063ffffffff61236f16565b9250600101611aec565b50909392505050565b60055461010090046001600160a01b031681565b611b51611e18565b600a5460ff1615611b745760405162461bcd60e51b815260040161098490612e8d565b600780546001600160a01b03191633179055600a805460ff19166001179055565b670de0b6b3a764000090565b3390565b6001600160a01b038316611bcb5760405162461bcd60e51b815260040161098490613366565b6001600160a01b038216611bf15760405162461bcd60e51b815260040161098490612f99565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590611c4c908590612e84565b60405180910390a3505050565b6006546001600160a01b03163314611c835760405162461bcd60e51b815260040161098490613495565b565b6001600160a01b039182166000908152600c602090815260408083209390941682526002909201909152205490565b600061095b600d54836123b590919063ffffffff16565b6001600160a01b038316611cf15760405162461bcd60e51b815260040161098490613321565b6001600160a01b038216611d175760405162461bcd60e51b815260040161098490612eb9565b611d228383836123d8565b611d6581604051806060016040528060268152602001613600602691396001600160a01b038616600090815260208190526040902054919063ffffffff611dec16565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611d9a908263ffffffff611f4116565b6001600160a01b0380841660008181526020819052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90611c4c908590612e84565b60008184841115611e105760405162461bcd60e51b81526004016109849190612e5d565b505050900390565b60023360009081526009602052604090205460ff166002811115611e3857fe5b14611e555760405162461bcd60e51b815260040161098490613173565b6005546040516342f6e38960e01b81526101009091046001600160a01b0316906342f6e38990611e89903390600401612cef565b60206040518083038186803b158015611ea157600080fd5b505afa158015611eb5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ed99190612c45565b611c835760405162461bcd60e51b8152600401610984906133e1565b600a5460ff1615611c83576007546001600160a01b03163314611c835760405162461bcd60e51b81526004016109849061312e565b600061095b600d54836123dd90919063ffffffff16565b600082820183811015610b9d5760405162461bcd60e51b815260040161098490612fdb565b6001600160a01b038216611f8c5760405162461bcd60e51b815260040161098490613529565b611f98600083836123d8565b600254611fab908263ffffffff611f4116565b6002556001600160a01b038216600090815260208190526040902054611fd7908263ffffffff611f4116565b6001600160a01b0383166000818152602081905260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90612026908590612e84565b60405180910390a35050565b6001600160a01b03166000908152600c602052604090205490565b606060008061205c8585612400565b915091508061207d5760405162461bcd60e51b815260040161098490612efc565b60606120898684612466565b50935061095b92505050565b6001600160a01b0381166000908152600c602090815260409182902060010180548351818402810184019094528084526060939283018282801561210257602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116120e4575b50505050509050919050565b60008061211b8484612400565b95945050505050565b600080805b600b548110156121a3576000600b828154811061214257fe5b60009182526020822001546001600160a01b0316915061216182612032565b131561216e576001909201915b606061217982612095565b80519091501561219957805161219690859063ffffffff611f4116565b93505b5050600101612129565b50905090565b6001600160a01b038281166000908152600c60209081526040808320938516835260029384018252918290206001908101805484519281161561010002600019011694909404601f81018390048302820183019093528281526060939092909183018282801561225a5780601f1061222f5761010080835404028352916020019161225a565b820191906000526020600020905b81548152906001019060200180831161223d57829003601f168201915b5050505050905092915050565b606061131684848460405180606001604052806029815260200161362660299139612595565b6001600160a01b0382166122b35760405162461bcd60e51b8152600401610984906132b8565b6122bf826000836123d8565b612302816040518060600160405280602281526020016135de602291396001600160a01b038516600090815260208190526040902054919063ffffffff611dec16565b6001600160a01b03831660009081526020819052604090205560025461232e908263ffffffff6125c316565b6002556040516000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90612026908590612e84565b60008282018183128015906123845750838112155b80612399575060008312801561239957508381125b610b9d5760405162461bcd60e51b815260040161098490613012565b6000610b9d6123ca848463ffffffff61260516565b670de0b6b3a7640000612670565b505050565b6000610b9d6123fa84670de0b6b3a764000063ffffffff61260516565b83612670565b81516000908190815b8181101561245357846001600160a01b031686828151811061242757fe5b60200260200101516001600160a01b0316141561244b5792506001915061245f9050565b600101612409565b50600019600092509250505b9250929050565b815160609060009080841061248d5760405162461bcd60e51b815260040161098490612f2b565b60606001820367ffffffffffffffff811180156124a957600080fd5b506040519080825280602002602001820160405280156124d3578160200160208202803683370190505b50905060005b85811015612521578681815181106124ed57fe5b602002602001015182828151811061250157fe5b6001600160a01b03909216602092830291909101909101526001016124d9565b50600185015b828110156125725786818151811061253b57fe5b602002602001015182600183038151811061255257fe5b6001600160a01b0390921660209283029190910190910152600101612527565b508086868151811061258057fe5b60200260200101519350935050509250929050565b6060824710156125b75760405162461bcd60e51b815260040161098490613053565b61211b85858585612704565b6000610b9d83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611dec565b6000826126145750600061095b565b826000191480156126285750600160ff1b82145b156126455760405162461bcd60e51b815260040161098490613222565b8282028284828161265257fe5b0514610b9d5760405162461bcd60e51b815260040161098490613222565b60008161268f5760405162461bcd60e51b815260040161098490613560565b600160ff1b831415806126a457508160001914155b6126c05760405162461bcd60e51b815260040161098490613291565b60006126d2848463ffffffff6127c816565b905060008385181280156126ee57508284816126ea57fe5b0715155b15610b9d5761131681600163ffffffff61282c16565b606061270f85612872565b61272b5760405162461bcd60e51b8152600401610984906133aa565b60006060866001600160a01b031685876040516127489190612cd3565b60006040518083038185875af1925050503d8060008114612785576040519150601f19603f3d011682016040523d82523d6000602084013e61278a565b606091505b5091509150811561279e5791506113169050565b8051156127ae5780518082602001fd5b8360405162461bcd60e51b81526004016109849190612e5d565b6000816127e75760405162461bcd60e51b8152600401610984906134c4565b816000191480156127fb5750600160ff1b83145b156128185760405162461bcd60e51b8152600401610984906131aa565b600082848161282357fe5b05949350505050565b60008183038183128015906128415750838113155b80612856575060008312801561285657508381135b610b9d5760405162461bcd60e51b815260040161098490613451565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470818114801590611316575050151592915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106128ec5782800160ff19823516178555612919565b82800160010185558215612919579182015b828111156129195782358255916020019190600101906128fe565b50612925929150612a15565b5090565b82805482825590600052602060002090810192821561297e579160200282015b8281111561297e57825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190612949565b50612925929150612a2f565b6040518060a0016040528060006001600160a01b0316815260200160006001600160a01b0316815260200160008152602001600060ff168152602001606081525090565b50805460018160011615610100020316600290046000825580601f106129f45750612a12565b601f016020900490600052602060002090810190612a129190612a15565b50565b61094091905b808211156129255760008155600101612a1b565b61094091905b808211156129255780546001600160a01b0319168155600101612a35565b80356001600160a01b038116811461095b57600080fd5b60008083601f840112612a7b578182fd5b50813567ffffffffffffffff811115612a92578182fd5b60208301915083602082850101111561245f57600080fd5b600060208284031215612abb578081fd5b610b9d8383612a53565b60008060408385031215612ad7578081fd5b612ae18484612a53565b9150612af08460208501612a53565b90509250929050565b60008060008060608587031215612b0e578182fd5b8435612b19816135c8565b93506020850135612b29816135c8565b9250604085013567ffffffffffffffff811115612b44578283fd5b612b5087828801612a6a565b95989497509550505050565b600080600060608486031215612b70578283fd5b612b7a8585612a53565b9250612b898560208601612a53565b9150604084013590509250925092565b600080600060608486031215612bad578283fd5b8335612bb8816135c8565b92506020840135612bc8816135c8565b929592945050506040919091013590565b60008060408385031215612beb578182fd5b612bf58484612a53565b946020939093013593505050565b60008060008060608587031215612c18578384fd5b8435612c23816135c8565b935060208501359250604085013567ffffffffffffffff811115612b44578283fd5b600060208284031215612c56578081fd5b81518015158114610b9d578182fd5b600060208284031215612c76578081fd5b5035919050565b60008284528282602086013780602084860101526020601f19601f85011685010190509392505050565b60008151808452612cbf816020860160208601613598565b601f01601f19169290920160200192915050565b60008251612ce5818460208701613598565b9190910192915050565b6001600160a01b0391909116815260200190565b6001600160a01b0392831681529116602082015260400190565b6020808252825182820181905260009190848201906040850190845b81811015612d5e5783516001600160a01b031683529284019291840191600101612d39565b50909695505050505050565b60208082528251828201819052600091906040908185019080840286018301878501865b83811015612e0057888303603f19018552815180516001600160a01b039081168552888201511688850152868101518785015260608082015160ff169085015260808082015160a08287018190529190612dea83880182612ca7565b988b019896505050928801925050600101612d8e565b509098975050505050505050565b901515815260200190565b600060208252611316602083018486612c7d565b600060408252612e41604083018587612c7d565b8281036020840152612e538185612ca7565b9695505050505050565b600060208252610b9d6020830184612ca7565b6020810160038310612e7e57fe5b91905290565b90815260200190565b602080825260129082015271135d5cdd081b9bdd081899481b1bd8dad95960721b604082015260600190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526015908201527420b2323932b9b9903737ba1034b71030b93930bc9760591b604082015260600190565b60208082526018908201527f496e646578206d757374206265203c2041206c656e6774680000000000000000604082015260600190565b60208082526018908201527f4d6f64756c65206d757374206e6f742062652061646465640000000000000000604082015260600190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b60208082526021908201527f5369676e6564536166654d6174683a206164646974696f6e206f766572666c6f6040820152607760f81b606082015260800190565b60208082526026908201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6040820152651c8818d85b1b60d21b606082015260800190565b6020808252601f908201527f5669727475616c20756e697420636f6e76657273696f6e20696e76616c696400604082015260600190565b602080825260149082015273135bd91d5b19481b5d5cdd08189948185919195960621b604082015260600190565b60208082526016908201527504d7573742062652067726561746572207468616e20360541b604082015260600190565b60208082526025908201527f5768656e206c6f636b65642c206f6e6c7920746865206c6f636b65722063616e6040820152640818d85b1b60da1b606082015260800190565b60208082526018908201527f4f6e6c7920746865206d6f64756c652063616e2063616c6c0000000000000000604082015260600190565b60208082526021908201527f5369676e6564536166654d6174683a206469766973696f6e206f766572666c6f6040820152607760f81b606082015260800190565b6020808252601d908201527f4d75737420626520656e61626c6564206f6e20436f6e74726f6c6c6572000000604082015260600190565b60208082526027908201527f5369676e6564536166654d6174683a206d756c7469706c69636174696f6e206f604082015266766572666c6f7760c81b606082015260800190565b6020808252600e908201526d135d5cdd081899481b1bd8dad95960921b604082015260600190565b6020808252600d908201526c125b9d985b1a59081a5b9c1d5d609a1b604082015260600190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b6020808252600e908201526d26bab9ba103132903637b1b5b2b960911b604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b6020808252601d908201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604082015260600190565b60208082526024908201527f4d6f64756c65206d75737420626520656e61626c6564206f6e20636f6e74726f604082015263363632b960e11b606082015260800190565b60208082526012908201527113db9b1e481dda195b881d5b9b1bd8dad95960721b604082015260600190565b60208082526024908201527f5369676e6564536166654d6174683a207375627472616374696f6e206f766572604082015263666c6f7760e01b606082015260800190565b60208082526015908201527413db9b1e481b585b9859d95c8818d85b8818d85b1b605a1b604082015260600190565b6020808252818101527f5369676e6564536166654d6174683a206469766973696f6e206279207a65726f604082015260600190565b6020808252601690820152754d6f64756c65206d7573742062652070656e64696e6760501b604082015260600190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b60208082526010908201526f043616e742064697669646520627920360841b604082015260600190565b60ff91909116815260200190565b60005b838110156135b357818101518382015260200161359b565b838111156135c2576000848401525b50505050565b6001600160a01b0381168114612a1257600080fdfe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365416464726573733a206c6f772d6c6576656c2063616c6c20776974682076616c7565206661696c656445524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212204d28bc809b5d46c991eebf0091f4cd889699f35ea15cd104b1b95f5b9cb506ab64736f6c634300060a003300000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000024000000000000000000000000000000000000000000000000000000000000003a0000000000000000000000000f1b12a7b1f0af744ed21eec7d3e891c48fd3c32900000000000000000000000069bdb276a17dd90f9d3a545944ccb20e593ae8e300000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000440000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000080fb784b7ed66730e8b1dbd9820afd29931aab030000000000000000000000000bc529c00c6401aef6d220be8c6ea1667f6ad93e000000000000000000000000c00e94cb662c3520282e6f5717214004a7f26888000000000000000000000000c011a73ee8576fb46f5e1c5751ca3b9fe0af2a6f0000000000000000000000009f8f72aa9304c8b593d555f12ef6589cc3a579a2000000000000000000000000408e41876cccdc0f92210600ef50372656052a38000000000000000000000000dd974d5c2e2928dea5f71b9825b8b646686bd200000000000000000000000000bbbbca6a901c926f240b89eacb641d8aec7aeafd000000000000000000000000ba100000625a3754423978a60c9317c58a424e3d000000000000000000000000221657776846890989a759ba2973e427dff5c9bb000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000001cdc0792b075c5d170000000000000000000000000000000000000000000000000002d5a3a41f7f10000000000000000000000000000000000000000000000000012f39baadc9059b0000000000000000000000000000000000000000000000002bb2054a2f0b290e00000000000000000000000000000000000000000000000000553a1895c1a3390000000000000000000000000000000000000000000000014a7f37e5d4bf425e00000000000000000000000000000000000000000000000047f9f05152ce3cbe000000000000000000000000000000000000000000000001abe6014dfe8b555500000000000000000000000000000000000000000000000002ab599965082a3e000000000000000000000000000000000000000000000000017d7bd6eaae27200000000000000000000000000000000000000000000000000000000000000002000000000000000000000000508910aa6ff3d029dc358dd0f775877a355ba35b0000000000000000000000003d8d14b7efb8e342189ee14c3d40dce005eb901b000000000000000000000000000000000000000000000000000000000000000f4465666950756c736520496e646578000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034450490000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102b25760003560e01c80638ae458da11610175578063b2494df3116100dc578063d7f1b27c11610095578063ea0ee5591161006f578063ea0ee55914610842578063eaf993e114610862578063f77c479114610882578063f83d08ba14610897576102b9565b8063d7f1b27c146107e2578063dd62ed3e14610802578063df5e9b2914610822576102b9565b8063b2494df314610738578063c2de0e9d1461074d578063c5d574fe1461076d578063c75640171461078d578063d0ebdbe7146107ad578063d7b96d4e146107cd576102b9565b8063a457c2d71161012e578063a457c2d71461068e578063a4e2d634146106ae578063a69df4b5146106c3578063a7bdad03146106d8578063a9059cbb146106f8578063acf3f07714610718576102b9565b80638ae458da146105d75780638f6f0332146105f757806395d89b411461061757806399d50d5d1461062c5780639dc29fac1461064e578063a06324611461066e576102b9565b806340c10f191161021957806366cb8d2f116101d257806366cb8d2f146105155780636f86c8971461053557806370a08231146105555780637d96659314610575578063802758601461059557806381b2248a146105b7576102b9565b806340c10f191461045e578063481c6a751461047e5780634e353270146104a05780635230c396146104c057806353bae5f7146104d557806363a90fc1146104f5576102b9565b806323b872dd1161026b57806323b872dd1461038f57806326898fe1146103af5780632ba57d17146103cf578063313ce567146103ef57806335bc4e5214610411578063395093511461043e576102b9565b806306fdde03146102be578063095ea7b3146102e95780630ffe0f1e1461031657806318160ddd1461032d5780631ed86f191461034f57806322ebeba41461036f576102b9565b366102b957005b600080fd5b3480156102ca57600080fd5b506102d36108ac565b6040516102e09190612e5d565b60405180910390f35b3480156102f557600080fd5b50610309610304366004612bd9565b610943565b6040516102e09190612e0e565b34801561032257600080fd5b5061032b610961565b005b34801561033957600080fd5b50610342610a4b565b6040516102e09190612e84565b34801561035b57600080fd5b5061032b61036a366004612aaa565b610a51565b34801561037b57600080fd5b5061034261038a366004612ac5565b610b89565b34801561039b57600080fd5b506103096103aa366004612b99565b610ba4565b3480156103bb57600080fd5b5061032b6103ca366004612af9565b610c31565b3480156103db57600080fd5b5061032b6103ea366004612bd9565b610ccc565b3480156103fb57600080fd5b50610404610d6c565b6040516102e0919061358a565b34801561041d57600080fd5b5061043161042c366004612aaa565b610d75565b6040516102e09190612e70565b34801561044a57600080fd5b50610309610459366004612bd9565b610d8a565b34801561046a57600080fd5b5061032b610479366004612bd9565b610dde565b34801561048a57600080fd5b50610493610dfc565b6040516102e09190612cef565b3480156104ac57600080fd5b5061032b6104bb366004612aaa565b610e0b565b3480156104cc57600080fd5b50610342610e93565b3480156104e157600080fd5b506103096104f0366004612aaa565b610e99565b34801561050157600080fd5b5061032b610510366004612b5c565b610ecc565b34801561052157600080fd5b50610342610530366004612aaa565b610f73565b34801561054157600080fd5b5061032b610550366004612aaa565b610f81565b34801561056157600080fd5b50610342610570366004612aaa565b61104a565b34801561058157600080fd5b50610309610590366004612ac5565b611065565b3480156105a157600080fd5b506105aa611080565b6040516102e09190612d6a565b3480156105c357600080fd5b506104936105d2366004612c65565b61123d565b3480156105e357600080fd5b506102d36105f2366004612ac5565b611264565b34801561060357600080fd5b506102d3610612366004612c03565b611270565b34801561062357600080fd5b506102d361131e565b34801561063857600080fd5b5061064161137f565b6040516102e09190612d1d565b34801561065a57600080fd5b5061032b610669366004612bd9565b6113e0565b34801561067a57600080fd5b5061032b610689366004612aaa565b6113fa565b34801561069a57600080fd5b506103096106a9366004612bd9565b61159b565b3480156106ba57600080fd5b50610309611609565b3480156106cf57600080fd5b5061032b611612565b3480156106e457600080fd5b506106416106f3366004612aaa565b611682565b34801561070457600080fd5b50610309610713366004612bd9565b61168d565b34801561072457600080fd5b5061032b610733366004612ac5565b6116a1565b34801561074457600080fd5b5061064161177e565b34801561075957600080fd5b5061032b610768366004612c65565b6117de565b34801561077957600080fd5b50610493610788366004612c65565b61184e565b34801561079957600080fd5b5061032b6107a8366004612aaa565b61185b565b3480156107b957600080fd5b5061032b6107c8366004612aaa565b611915565b3480156107d957600080fd5b5061049361199f565b3480156107ee57600080fd5b506103096107fd366004612aaa565b6119ae565b34801561080e57600080fd5b5061034261081d366004612ac5565b6119b7565b34801561082e57600080fd5b5061030961083d366004612aaa565b6119e2565b34801561084e57600080fd5b5061032b61085d366004612ac5565b611a51565b34801561086e57600080fd5b5061034261087d366004612aaa565b611ace565b34801561088e57600080fd5b50610493611b35565b3480156108a357600080fd5b5061032b611b49565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156109385780601f1061090d57610100808354040283529160200191610938565b820191906000526020600020905b81548152906001019060200180831161091b57829003601f168201915b505050505090505b90565b6000610957610950611ba1565b8484611ba5565b5060015b92915050565b600a5460ff161561098d5760405162461bcd60e51b815260040161098490613425565b60405180910390fd5b60013360009081526009602052604090205460ff1660028111156109ad57fe5b146109ca5760405162461bcd60e51b8152600401610984906134f9565b33600081815260096020526040808220805460ff19166002179055600880546001810182559083527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b03191684179055517f27b541a16df0902e262f34789782092ab25125513b8ed73608e802951771b9289190a2565b60025490565b610a59611c59565b6001600160a01b03811660009081526009602052604081205460ff166002811115610a8057fe5b14610a9d5760405162461bcd60e51b815260040161098490612f62565b6005546040516342f6e38960e01b81526101009091046001600160a01b0316906342f6e38990610ad1908490600401612cef565b60206040518083038186803b158015610ae957600080fd5b505afa158015610afd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b219190612c45565b610b3d5760405162461bcd60e51b8152600401610984906131eb565b6001600160a01b038116600081815260096020526040808220805460ff19166001179055517fead6a006345da1073a106d5f32372d2d2204f46cb0b4bca8f5ebafcbbed12b8a9190a250565b6000610b9d610b988484611c85565b611cb4565b9392505050565b6000610bb1848484611ccb565b610c2784610bbd611ba1565b610c228560405180606001604052806028815260200161364f602891396001600160a01b038a16600090815260016020526040812090610bfb611ba1565b6001600160a01b03168152602081019190915260400160002054919063ffffffff611dec16565b611ba5565b5060019392505050565b610c39611e18565b610c41611ef5565b6001600160a01b038085166000908152600c6020908152604080832093871683526002909301905220610c789060010183836128ab565b50826001600160a01b0316846001600160a01b03167fb373eedb8e9038a2dcba31f06b2735887c1a904125e5c9f0021ba41ed972318e8484604051610cbe929190612e19565b60405180910390a350505050565b610cd4611e18565b610cdc611ef5565b6000610ce782611f2a565b9050600082138015610cf7575080155b15610d145760405162461bcd60e51b815260040161098490613099565b6001600160a01b0383166000818152600c602052604090819020839055517f8133e2bf34edab764b55c59d1d41f9df637e7c22828bb6b0a9d55b429d008a9790610d5f908590612e84565b60405180910390a2505050565b60055460ff1690565b60096020526000908152604090205460ff1681565b6000610957610d97611ba1565b84610c228560016000610da8611ba1565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff611f4116565b610de6611e18565b610dee611ef5565b610df88282611f66565b5050565b6006546001600160a01b031681565b610e13611e18565b610e1b611ef5565b600b805460018101825560009182527f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db90180546001600160a01b0319166001600160a01b03841690811790915560405190917f76da6cf8b40dd2b2c223a5956831e0ff4e75522538a86782108a0bbe1577e29891a250565b600d5481565b600060015b6001600160a01b03831660009081526009602052604090205460ff166002811115610ec557fe5b1492915050565b610ed4611e18565b610edc611ef5565b6000610ee782611f2a565b9050600082138015610ef7575080155b15610f145760405162461bcd60e51b815260040161098490613099565b6001600160a01b038085166000818152600c60209081526040808320948816808452600290950190915290819020849055517f81a422e27f503e1b92cdb616a6e653aac10a8e0c3fa6832a58dc616c080fd7bd90610cbe908690612e84565b600061095b610b9883612032565b610f89611e18565b610f91611ef5565b610ffe81600b805480602002602001604051908101604052809291908181526020018280548015610feb57602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311610fcd575b505050505061204d90919063ffffffff16565b805161101291600b91602090910190612929565b506040516001600160a01b038216907fc605d0bf97f9b921340106a2e59f9428d5eb9039b16866159e0cdd2bf8e963df90600090a250565b6001600160a01b031660009081526020819052604090205490565b6000610b9d8261107485612095565b9063ffffffff61210e16565b60608061108b612124565b67ffffffffffffffff811180156110a157600080fd5b506040519080825280602002602001820160405280156110db57816020015b6110c861298a565b8152602001906001900390816110c05790505b5090506000805b600b54811015611235576000600b82815481106110fb57fe5b60009182526020822001546001600160a01b0316915061111a82612032565b1315611189576040805160a0810182526001600160a01b03831681526000602082015290810161114983610f73565b8152602001600060ff1681526020016040518060200160405280600081525081525084848151811061117757fe5b60209081029190910101526001909201915b606061119482612095565b905060005b815181101561122a5760008282815181106111b057fe5b602002602001015190506040518060a00160405280856001600160a01b03168152602001826001600160a01b031681526020016111ed8684610b89565b81526001602082015260400161120386846121a9565b81525087878151811061121257fe5b60209081029190910101525060019485019401611199565b5050506001016110e2565b509091505090565b6008818154811061124a57fe5b6000918252602090912001546001600160a01b0316905081565b6060610b9d83836121a9565b606061127a611e18565b611282611ef5565b6112cd83838080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050506001600160a01b03881691905086612267565b905083856001600160a01b03167f2a936dbabeaea30adc1ddad138b1958497988474bef8b09a29411f0105ab8ab285858560405161130d93929190612e2d565b60405180910390a35b949350505050565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156109385780601f1061090d57610100808354040283529160200191610938565b6060600b80548060200260200160405190810160405280929190818152602001828054801561093857602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116113b9575050505050905090565b6113e8611e18565b6113f0611ef5565b610df8828261228d565b611402611c59565b600a5460ff16156114255760405162461bcd60e51b815260040161098490613425565b60026001600160a01b03821660009081526009602052604090205460ff16600281111561144e57fe5b1461146b5760405162461bcd60e51b8152600401610984906130d0565b806001600160a01b031663847ef08d6040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156114a657600080fd5b505af11580156114ba573d6000803e3d6000fd5b505050506001600160a01b0381166000908152600960205260408120805460ff1916600183021790555061154f816008805480602002602001604051908101604052809291908181526020018280548015610feb576020028201919060005260206000209081546001600160a01b03168152600190910190602001808311610fcd57505050505061204d90919063ffffffff16565b805161156391600891602090910190612929565b506040516001600160a01b038216907f0a1ee69f55c33d8467c69ca59ce2007a737a88603d75392972520bf67cb513b890600090a250565b60006109576115a8611ba1565b84610c228560405180606001604052806025815260200161367760259139600160006115d2611ba1565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff611dec16565b600a5460ff1681565b61161a611e18565b600a5460ff1661163c5760405162461bcd60e51b815260040161098490613269565b6007546001600160a01b031633146116665760405162461bcd60e51b8152600401610984906132f9565b600780546001600160a01b0319169055600a805460ff19169055565b606061095b82612095565b600061095761169a611ba1565b8484611ccb565b6116a9611e18565b6116b1611ef5565b6116ca816116be84612095565b9063ffffffff61204d16565b6001600160a01b0383166000908152600c6020908152604090912082516116fb936001909201929190910190612929565b506001600160a01b038083166000908152600c602090815260408083209385168352600290930190529081208181559061173860018301826129ce565b5050806001600160a01b0316826001600160a01b03167f5d0275f68d583838a7e2be68e3ef8ac2c1f9d4eeaa4b223360f4cd093a160d7560405160405180910390a35050565b60606008805480602002602001604051908101604052809291908181526020018280548015610938576020028201919060005260206000209081546001600160a01b031681526001909101906020018083116113b9575050505050905090565b6117e6611e18565b6117ee611ef5565b6000811361180e5760405162461bcd60e51b8152600401610984906130fe565b600d8190556040517fc4e78b3245dc105eefced18655b978e194ff858545a1080f2888dc3b6ae8df0a90611843908390612e84565b60405180910390a150565b600b818154811061124a57fe5b611863611c59565b600a5460ff16156118865760405162461bcd60e51b815260040161098490613425565b60016001600160a01b03821660009081526009602052604090205460ff1660028111156118af57fe5b146118cc5760405162461bcd60e51b8152600401610984906134f9565b6001600160a01b038116600081815260096020526040808220805460ff19169055517fd6b18042563148f38d728c1c4d339ffd515b632d0ad2e1833b822412f3f4d8779190a250565b61191d611c59565b600a5460ff16156119405760405162461bcd60e51b815260040161098490613425565b600680546001600160a01b038381166001600160a01b03198316179092556040519116907f43fcfef38622d6a5b118be09c27a6ed8cbdbfca21f0ea9245412ce8031c0423c906119939084908490612d03565b60405180910390a15050565b6007546001600160a01b031681565b60006002610e9e565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b600061095b82600b805480602002602001604051908101604052809291908181526020018280548015611a3e57602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311611a20575b505050505061210e90919063ffffffff16565b611a59611e18565b611a61611ef5565b6001600160a01b038281166000818152600c60209081526040808320600190810180549182018155845291832090910180546001600160a01b0319169486169485179055517ff71324fa78e1894b364a1fc8d0535c4208f28c7b380f752afe00c8ce386023fb9190a35050565b600080611ada83610f73565b90506060611ae784612095565b905060005b8151811015611b2c57611b22611b1586848481518110611b0857fe5b6020026020010151610b89565b849063ffffffff61236f16565b9250600101611aec565b50909392505050565b60055461010090046001600160a01b031681565b611b51611e18565b600a5460ff1615611b745760405162461bcd60e51b815260040161098490612e8d565b600780546001600160a01b03191633179055600a805460ff19166001179055565b670de0b6b3a764000090565b3390565b6001600160a01b038316611bcb5760405162461bcd60e51b815260040161098490613366565b6001600160a01b038216611bf15760405162461bcd60e51b815260040161098490612f99565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590611c4c908590612e84565b60405180910390a3505050565b6006546001600160a01b03163314611c835760405162461bcd60e51b815260040161098490613495565b565b6001600160a01b039182166000908152600c602090815260408083209390941682526002909201909152205490565b600061095b600d54836123b590919063ffffffff16565b6001600160a01b038316611cf15760405162461bcd60e51b815260040161098490613321565b6001600160a01b038216611d175760405162461bcd60e51b815260040161098490612eb9565b611d228383836123d8565b611d6581604051806060016040528060268152602001613600602691396001600160a01b038616600090815260208190526040902054919063ffffffff611dec16565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611d9a908263ffffffff611f4116565b6001600160a01b0380841660008181526020819052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90611c4c908590612e84565b60008184841115611e105760405162461bcd60e51b81526004016109849190612e5d565b505050900390565b60023360009081526009602052604090205460ff166002811115611e3857fe5b14611e555760405162461bcd60e51b815260040161098490613173565b6005546040516342f6e38960e01b81526101009091046001600160a01b0316906342f6e38990611e89903390600401612cef565b60206040518083038186803b158015611ea157600080fd5b505afa158015611eb5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ed99190612c45565b611c835760405162461bcd60e51b8152600401610984906133e1565b600a5460ff1615611c83576007546001600160a01b03163314611c835760405162461bcd60e51b81526004016109849061312e565b600061095b600d54836123dd90919063ffffffff16565b600082820183811015610b9d5760405162461bcd60e51b815260040161098490612fdb565b6001600160a01b038216611f8c5760405162461bcd60e51b815260040161098490613529565b611f98600083836123d8565b600254611fab908263ffffffff611f4116565b6002556001600160a01b038216600090815260208190526040902054611fd7908263ffffffff611f4116565b6001600160a01b0383166000818152602081905260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90612026908590612e84565b60405180910390a35050565b6001600160a01b03166000908152600c602052604090205490565b606060008061205c8585612400565b915091508061207d5760405162461bcd60e51b815260040161098490612efc565b60606120898684612466565b50935061095b92505050565b6001600160a01b0381166000908152600c602090815260409182902060010180548351818402810184019094528084526060939283018282801561210257602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116120e4575b50505050509050919050565b60008061211b8484612400565b95945050505050565b600080805b600b548110156121a3576000600b828154811061214257fe5b60009182526020822001546001600160a01b0316915061216182612032565b131561216e576001909201915b606061217982612095565b80519091501561219957805161219690859063ffffffff611f4116565b93505b5050600101612129565b50905090565b6001600160a01b038281166000908152600c60209081526040808320938516835260029384018252918290206001908101805484519281161561010002600019011694909404601f81018390048302820183019093528281526060939092909183018282801561225a5780601f1061222f5761010080835404028352916020019161225a565b820191906000526020600020905b81548152906001019060200180831161223d57829003601f168201915b5050505050905092915050565b606061131684848460405180606001604052806029815260200161362660299139612595565b6001600160a01b0382166122b35760405162461bcd60e51b8152600401610984906132b8565b6122bf826000836123d8565b612302816040518060600160405280602281526020016135de602291396001600160a01b038516600090815260208190526040902054919063ffffffff611dec16565b6001600160a01b03831660009081526020819052604090205560025461232e908263ffffffff6125c316565b6002556040516000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90612026908590612e84565b60008282018183128015906123845750838112155b80612399575060008312801561239957508381125b610b9d5760405162461bcd60e51b815260040161098490613012565b6000610b9d6123ca848463ffffffff61260516565b670de0b6b3a7640000612670565b505050565b6000610b9d6123fa84670de0b6b3a764000063ffffffff61260516565b83612670565b81516000908190815b8181101561245357846001600160a01b031686828151811061242757fe5b60200260200101516001600160a01b0316141561244b5792506001915061245f9050565b600101612409565b50600019600092509250505b9250929050565b815160609060009080841061248d5760405162461bcd60e51b815260040161098490612f2b565b60606001820367ffffffffffffffff811180156124a957600080fd5b506040519080825280602002602001820160405280156124d3578160200160208202803683370190505b50905060005b85811015612521578681815181106124ed57fe5b602002602001015182828151811061250157fe5b6001600160a01b03909216602092830291909101909101526001016124d9565b50600185015b828110156125725786818151811061253b57fe5b602002602001015182600183038151811061255257fe5b6001600160a01b0390921660209283029190910190910152600101612527565b508086868151811061258057fe5b60200260200101519350935050509250929050565b6060824710156125b75760405162461bcd60e51b815260040161098490613053565b61211b85858585612704565b6000610b9d83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611dec565b6000826126145750600061095b565b826000191480156126285750600160ff1b82145b156126455760405162461bcd60e51b815260040161098490613222565b8282028284828161265257fe5b0514610b9d5760405162461bcd60e51b815260040161098490613222565b60008161268f5760405162461bcd60e51b815260040161098490613560565b600160ff1b831415806126a457508160001914155b6126c05760405162461bcd60e51b815260040161098490613291565b60006126d2848463ffffffff6127c816565b905060008385181280156126ee57508284816126ea57fe5b0715155b15610b9d5761131681600163ffffffff61282c16565b606061270f85612872565b61272b5760405162461bcd60e51b8152600401610984906133aa565b60006060866001600160a01b031685876040516127489190612cd3565b60006040518083038185875af1925050503d8060008114612785576040519150601f19603f3d011682016040523d82523d6000602084013e61278a565b606091505b5091509150811561279e5791506113169050565b8051156127ae5780518082602001fd5b8360405162461bcd60e51b81526004016109849190612e5d565b6000816127e75760405162461bcd60e51b8152600401610984906134c4565b816000191480156127fb5750600160ff1b83145b156128185760405162461bcd60e51b8152600401610984906131aa565b600082848161282357fe5b05949350505050565b60008183038183128015906128415750838113155b80612856575060008312801561285657508381135b610b9d5760405162461bcd60e51b815260040161098490613451565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470818114801590611316575050151592915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106128ec5782800160ff19823516178555612919565b82800160010185558215612919579182015b828111156129195782358255916020019190600101906128fe565b50612925929150612a15565b5090565b82805482825590600052602060002090810192821561297e579160200282015b8281111561297e57825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190612949565b50612925929150612a2f565b6040518060a0016040528060006001600160a01b0316815260200160006001600160a01b0316815260200160008152602001600060ff168152602001606081525090565b50805460018160011615610100020316600290046000825580601f106129f45750612a12565b601f016020900490600052602060002090810190612a129190612a15565b50565b61094091905b808211156129255760008155600101612a1b565b61094091905b808211156129255780546001600160a01b0319168155600101612a35565b80356001600160a01b038116811461095b57600080fd5b60008083601f840112612a7b578182fd5b50813567ffffffffffffffff811115612a92578182fd5b60208301915083602082850101111561245f57600080fd5b600060208284031215612abb578081fd5b610b9d8383612a53565b60008060408385031215612ad7578081fd5b612ae18484612a53565b9150612af08460208501612a53565b90509250929050565b60008060008060608587031215612b0e578182fd5b8435612b19816135c8565b93506020850135612b29816135c8565b9250604085013567ffffffffffffffff811115612b44578283fd5b612b5087828801612a6a565b95989497509550505050565b600080600060608486031215612b70578283fd5b612b7a8585612a53565b9250612b898560208601612a53565b9150604084013590509250925092565b600080600060608486031215612bad578283fd5b8335612bb8816135c8565b92506020840135612bc8816135c8565b929592945050506040919091013590565b60008060408385031215612beb578182fd5b612bf58484612a53565b946020939093013593505050565b60008060008060608587031215612c18578384fd5b8435612c23816135c8565b935060208501359250604085013567ffffffffffffffff811115612b44578283fd5b600060208284031215612c56578081fd5b81518015158114610b9d578182fd5b600060208284031215612c76578081fd5b5035919050565b60008284528282602086013780602084860101526020601f19601f85011685010190509392505050565b60008151808452612cbf816020860160208601613598565b601f01601f19169290920160200192915050565b60008251612ce5818460208701613598565b9190910192915050565b6001600160a01b0391909116815260200190565b6001600160a01b0392831681529116602082015260400190565b6020808252825182820181905260009190848201906040850190845b81811015612d5e5783516001600160a01b031683529284019291840191600101612d39565b50909695505050505050565b60208082528251828201819052600091906040908185019080840286018301878501865b83811015612e0057888303603f19018552815180516001600160a01b039081168552888201511688850152868101518785015260608082015160ff169085015260808082015160a08287018190529190612dea83880182612ca7565b988b019896505050928801925050600101612d8e565b509098975050505050505050565b901515815260200190565b600060208252611316602083018486612c7d565b600060408252612e41604083018587612c7d565b8281036020840152612e538185612ca7565b9695505050505050565b600060208252610b9d6020830184612ca7565b6020810160038310612e7e57fe5b91905290565b90815260200190565b602080825260129082015271135d5cdd081b9bdd081899481b1bd8dad95960721b604082015260600190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526015908201527420b2323932b9b9903737ba1034b71030b93930bc9760591b604082015260600190565b60208082526018908201527f496e646578206d757374206265203c2041206c656e6774680000000000000000604082015260600190565b60208082526018908201527f4d6f64756c65206d757374206e6f742062652061646465640000000000000000604082015260600190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b60208082526021908201527f5369676e6564536166654d6174683a206164646974696f6e206f766572666c6f6040820152607760f81b606082015260800190565b60208082526026908201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6040820152651c8818d85b1b60d21b606082015260800190565b6020808252601f908201527f5669727475616c20756e697420636f6e76657273696f6e20696e76616c696400604082015260600190565b602080825260149082015273135bd91d5b19481b5d5cdd08189948185919195960621b604082015260600190565b60208082526016908201527504d7573742062652067726561746572207468616e20360541b604082015260600190565b60208082526025908201527f5768656e206c6f636b65642c206f6e6c7920746865206c6f636b65722063616e6040820152640818d85b1b60da1b606082015260800190565b60208082526018908201527f4f6e6c7920746865206d6f64756c652063616e2063616c6c0000000000000000604082015260600190565b60208082526021908201527f5369676e6564536166654d6174683a206469766973696f6e206f766572666c6f6040820152607760f81b606082015260800190565b6020808252601d908201527f4d75737420626520656e61626c6564206f6e20436f6e74726f6c6c6572000000604082015260600190565b60208082526027908201527f5369676e6564536166654d6174683a206d756c7469706c69636174696f6e206f604082015266766572666c6f7760c81b606082015260800190565b6020808252600e908201526d135d5cdd081899481b1bd8dad95960921b604082015260600190565b6020808252600d908201526c125b9d985b1a59081a5b9c1d5d609a1b604082015260600190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b6020808252600e908201526d26bab9ba103132903637b1b5b2b960911b604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b6020808252601d908201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604082015260600190565b60208082526024908201527f4d6f64756c65206d75737420626520656e61626c6564206f6e20636f6e74726f604082015263363632b960e11b606082015260800190565b60208082526012908201527113db9b1e481dda195b881d5b9b1bd8dad95960721b604082015260600190565b60208082526024908201527f5369676e6564536166654d6174683a207375627472616374696f6e206f766572604082015263666c6f7760e01b606082015260800190565b60208082526015908201527413db9b1e481b585b9859d95c8818d85b8818d85b1b605a1b604082015260600190565b6020808252818101527f5369676e6564536166654d6174683a206469766973696f6e206279207a65726f604082015260600190565b6020808252601690820152754d6f64756c65206d7573742062652070656e64696e6760501b604082015260600190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b60208082526010908201526f043616e742064697669646520627920360841b604082015260600190565b60ff91909116815260200190565b60005b838110156135b357818101518382015260200161359b565b838111156135c2576000848401525b50505050565b6001600160a01b0381168114612a1257600080fdfe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365416464726573733a206c6f772d6c6576656c2063616c6c20776974682076616c7565206661696c656445524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212204d28bc809b5d46c991eebf0091f4cd889699f35ea15cd104b1b95f5b9cb506ab64736f6c634300060a0033

Deployed Bytecode Sourcemap

65329:22964:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48679:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;50785:169;;;;;;;;;;-1:-1:-1;50785:169:0;;;;;;;;:::i;:::-;;;;;;;;79764:362;;;;;;;;;;;;;:::i;:::-;;49754:100;;;;;;;;;;;;;:::i;:::-;;;;;;;;78041:349;;;;;;;;;;-1:-1:-1;78041:349:0;;;;;;;;:::i;80953:220::-;;;;;;;;;;-1:-1:-1;80953:220:0;;;;;;;;:::i;51428:321::-;;;;;;;;;;-1:-1:-1;51428:321:0;;;;;;;;:::i;75802:385::-;;;;;;;;;;-1:-1:-1;75802:385:0;;;;;;;;:::i;73121:548::-;;;;;;;;;;-1:-1:-1;73121:548:0;;;;;;;;:::i;49606:83::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;68474:61;;;;;;;;;;-1:-1:-1;68474:61:0;;;;;;;;:::i;:::-;;;;;;;;52158:218;;;;;;;;;;-1:-1:-1;52158:218:0;;;;;;;;:::i;76825:137::-;;;;;;;;;;-1:-1:-1;76825:137:0;;;;;;;;:::i;67981:22::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;72430:173;;;;;;;;;;-1:-1:-1;72430:173:0;;;;;;;;:::i;69444:32::-;;;;;;;;;;;;;:::i;82301:151::-;;;;;;;;;;-1:-1:-1;82301:151:0;;;;;;;;:::i;74983:690::-;;;;;;;;;;-1:-1:-1;74983:690:0;;;;;;;;:::i;80769:176::-;;;;;;;;;;-1:-1:-1;80769:176:0;;;;;;;;:::i;72736:193::-;;;;;;;;;;-1:-1:-1;72736:193:0;;;;;;;;:::i;49917:119::-;;;;;;;;;;-1:-1:-1;49917:119:0;;;;;;;;:::i;81782:179::-;;;;;;;;;;-1:-1:-1;81782:179:0;;;;;;;;:::i;82826:1514::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;68278:24;;;;;;;;;;-1:-1:-1;68278:24:0;;;;;;;;:::i;81347:189::-;;;;;;;;;;-1:-1:-1;81347:189:0;;;;;;;;:::i;71906:396::-;;;;;;;;;;-1:-1:-1;71906:396:0;;;;;;;;:::i;48881:87::-;;;;;;;;;;;;;:::i;80660:101::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;77152:137;;;;;;;;;;-1:-1:-1;77152:137:0;;;;;;;;:::i;78610:414::-;;;;;;;;;;-1:-1:-1;78610:414:0;;;;;;;;:::i;52879:269::-;;;;;;;;;;-1:-1:-1;52879:269:0;;;;;;;;:::i;68759:20::-;;;;;;;;;;;;;:::i;77681:201::-;;;;;;;;;;;;;:::i;81181:158::-;;;;;;;;;;-1:-1:-1;81181:158:0;;;;;;;;:::i;50249:175::-;;;;;;;;;;-1:-1:-1;50249:175:0;;;;;;;;:::i;74304:468::-;;;;;;;;;;-1:-1:-1;74304:468:0;;;;;;;;:::i;81544:96::-;;;;;;;;;;;;;:::i;76438:274::-;;;;;;;;;;-1:-1:-1;76438:274:0;;;;;;;;:::i;68815:27::-;;;;;;;;;;-1:-1:-1;68815:27:0;;;;;;;;:::i;79116:336::-;;;;;;;;;;-1:-1:-1;79116:336:0;;;;;;;;:::i;80348:239::-;;;;;;;;;;-1:-1:-1;80348:239:0;;;;;;;;:::i;68165:21::-;;;;;;;;;;;;;:::i;82059:159::-;;;;;;;;;;-1:-1:-1;82059:159:0;;;;;;;;:::i;50487:151::-;;;;;;;;;;-1:-1:-1;50487:151:0;;;;;;;;:::i;81648:126::-;;;;;;;;;;-1:-1:-1;81648:126:0;;;;;;;;:::i;73816:282::-;;;;;;;;;;-1:-1:-1;73816:282:0;;;;;;;;:::i;84475:537::-;;;;;;;;;;-1:-1:-1;84475:537:0;;;;;;;;:::i;67859:29::-;;;;;;;;;;;;;:::i;77425:151::-;;;;;;;;;;;;;:::i;48679:83::-;48749:5;48742:12;;;;;;;;-1:-1:-1;;48742:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48716:13;;48742:12;;48749:5;;48742:12;;48749:5;48742:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48679:83;;:::o;50785:169::-;50868:4;50885:39;50894:12;:10;:12::i;:::-;50908:7;50917:6;50885:8;:39::i;:::-;-1:-1:-1;50942:4:0;50785:169;;;;;:::o;79764:362::-;79821:8;;;;79820:9;79812:40;;;;-1:-1:-1;;;79812:40:0;;;;;;;;;;;;;;;;;79899:29;79884:10;79871:24;;;;:12;:24;;;;;;;;:57;;;;;;;;;79863:92;;;;-1:-1:-1;;;79863:92:0;;;;;;;;;79989:10;79976:24;;;;:12;:24;;;;;;:60;;-1:-1:-1;;79976:60:0;80003:33;79976:60;;;80047:7;:24;;79976:60;80047:24;;;;;;;;;;;-1:-1:-1;;;;;;80047:24:0;;;;;80089:29;;;79976:24;80089:29;79764:362::o;49754:100::-;49834:12;;49754:100;:::o;78041:349::-;67514:22;:20;:22::i;:::-;-1:-1:-1;;;;;78117:21:0;::::1;78142:26;78117:21:::0;;;:12:::1;:21;::::0;;;;;::::1;;:51;::::0;::::1;;;;;;;78109:88;;;;-1:-1:-1::0;;;78109:88:0::1;;;;;;;;;78216:10;::::0;:28:::1;::::0;-1:-1:-1;;;78216:28:0;;:10:::1;::::0;;::::1;-1:-1:-1::0;;;;;78216:10:0::1;::::0;:19:::1;::::0;:28:::1;::::0;78236:7;;78216:28:::1;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78208:70;;;;-1:-1:-1::0;;;78208:70:0::1;;;;;;;;;-1:-1:-1::0;;;;;78291:21:0;::::1;;::::0;;;:12:::1;:21;::::0;;;;;:53;;-1:-1:-1;;78291:53:0::1;78315:29;78291:53;::::0;;78362:20;::::1;::::0;78291:21;78362:20:::1;78041:349:::0;:::o;80953:220::-;81055:6;81081:84;81107:57;81136:10;81148:15;81107:28;:57::i;:::-;81081:25;:84::i;:::-;81074:91;80953:220;-1:-1:-1;;;80953:220:0:o;51428:321::-;51534:4;51551:36;51561:6;51569:9;51580:6;51551:9;:36::i;:::-;51598:121;51607:6;51615:12;:10;:12::i;:::-;51629:89;51667:6;51629:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;51629:19:0;;;;;;:11;:19;;;;;;51649:12;:10;:12::i;:::-;-1:-1:-1;;;;;51629:33:0;;;;;;;;;;;;-1:-1:-1;51629:33:0;;;:89;;:37;:89;:::i;:::-;51598:8;:121::i;:::-;-1:-1:-1;51737:4:0;51428:321;;;;;:::o;75802:385::-;67354:21;:19;:21::i;:::-;67711:31:::1;:29;:31::i;:::-;-1:-1:-1::0;;;;;76021:30:0;;::::2;;::::0;;;:18:::2;:30;::::0;;;;;;;:65;;::::2;::::0;;:48:::2;::::0;;::::2;:65:::0;;;:78:::2;::::0;:70:::2;;76094:5:::0;;76021:78:::2;:::i;:::-;;76156:15;-1:-1:-1::0;;;;;76117:62:0::2;76144:10;-1:-1:-1::0;;;;;76117:62:0::2;;76173:5;;76117:62;;;;;;;;;;;;;;;;75802:385:::0;;;;:::o;73121:548::-;67354:21;:19;:21::i;:::-;67711:31:::1;:29;:31::i;:::-;73244:18:::2;73265:36;73291:9;73265:25;:36::i;:::-;73244:57;;73436:1;73424:9;:13;:33;;;;-1:-1:-1::0;73441:16:0;;73424:33:::2;73420:107;;;73474:41;;-1:-1:-1::0;;;73474:41:0::2;;;;;;;;73420:107;-1:-1:-1::0;;;;;73539:30:0;::::2;;::::0;;;:18:::2;:30;::::0;;;;;;:56;;;73613:48;::::2;::::0;::::2;::::0;73651:9;;73613:48:::2;;;;;;;;;;67753:1;73121:548:::0;;:::o;49606:83::-;49672:9;;;;49606:83;:::o;68474:61::-;;;;;;;;;;;;;;;:::o;52158:218::-;52246:4;52263:83;52272:12;:10;:12::i;:::-;52286:7;52295:50;52334:10;52295:11;:25;52307:12;:10;:12::i;:::-;-1:-1:-1;;;;;52295:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;52295:25:0;;;:34;;;;;;;;;;;:50;:38;:50;:::i;76825:137::-;67354:21;:19;:21::i;:::-;67711:31:::1;:29;:31::i;:::-;76928:26:::2;76934:8;76944:9;76928:5;:26::i;:::-;76825:137:::0;;:::o;67981:22::-;;;-1:-1:-1;;;;;67981:22:0;;:::o;72430:173::-;67354:21;:19;:21::i;:::-;67711:31:::1;:29;:31::i;:::-;72524:10:::2;:27:::0;;::::2;::::0;::::2;::::0;;-1:-1:-1;72524:27:0;;;;::::2;::::0;;-1:-1:-1;;;;;;72524:27:0::2;-1:-1:-1::0;;;;;72524:27:0;::::2;::::0;;::::2;::::0;;;72569:26:::2;::::0;72524:27;;72569:26:::2;::::0;::::2;72430:173:::0;:::o;69444:32::-;;;;:::o;82301:151::-;82366:4;82415:29;82390:54;-1:-1:-1;;;;;82390:21:0;;;;;;:12;:21;;;;;;;;:54;;;;;;;;;;82301:151;-1:-1:-1;;82301:151:0:o;74983:690::-;67354:21;:19;:21::i;:::-;67711:31:::1;:29;:31::i;:::-;75198:18:::2;75219:36;75245:9;75219:25;:36::i;:::-;75198:57;;75386:1;75374:9;:13;:33;;;;-1:-1:-1::0;75391:16:0;;75374:33:::2;75369:109;;;75425:41;;-1:-1:-1::0;;;75425:41:0::2;;;;;;;;75369:109;-1:-1:-1::0;;;;;75490:30:0;;::::2;;::::0;;;:18:::2;:30;::::0;;;;;;;:65;;::::2;::::0;;;:48:::2;::::0;;::::2;:65:::0;;;;;;;:91;;;75599:66;::::2;::::0;::::2;::::0;75655:9;;75599:66:::2;;80769:176:::0;80845:6;80871:66;80897:39;80925:10;80897:27;:39::i;72736:193::-;67354:21;:19;:21::i;:::-;67711:31:::1;:29;:31::i;:::-;72846:29:::2;72864:10;72846;:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;;-1:-1:-1;;;;;72846:17:0::2;::::0;;;;;::::2;::::0;::::2;;::::0;;::::2;;;;;;;;;;;:29;;;;:::i;:::-;72833:42:::0;;::::2;::::0;:10:::2;::::0;:42:::2;::::0;;::::2;::::0;::::2;:::i;:::-;-1:-1:-1::0;72893:28:0::2;::::0;-1:-1:-1;;;;;72893:28:0;::::2;::::0;::::2;::::0;;;::::2;72736:193:::0;:::o;49917:119::-;-1:-1:-1;;;;;50010:18:0;49983:7;50010:18;;;;;;;;;;;;49917:119::o;81782:179::-;81875:4;81899:54;81945:7;81899:36;81924:10;81899:24;:36::i;:::-;:45;:54;:45;:54;:::i;82826:1514::-;82873:27;82913:37;82978:19;:17;:19::i;:::-;82953:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1;82913:85:0;-1:-1:-1;83009:21:0;;83047:1257;83071:10;:17;83067:21;;83047:1257;;;83110:17;83130:10;83141:1;83130:13;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;83130:13:0;;-1:-1:-1;83241:38:0;83130:13;83241:27;:38::i;:::-;:42;83237:411;;;83331:265;;;;;;;;-1:-1:-1;;;;;83331:265:0;;;;-1:-1:-1;83331:265:0;;;;;;;83463:37;83384:9;83463:26;:37::i;:::-;83331:265;;;;65957:1;83331:265;;;;;;;;;;;;;;;;;;;;;83304:9;83314:13;83304:24;;;;;;;;;;;;;;;;;:292;83617:15;;;;;83237:411;83664:32;83699:35;83724:9;83699:24;:35::i;:::-;83664:70;-1:-1:-1;83754:9:0;83749:544;83773:15;:22;83769:1;:26;83749:544;;;83821:21;83845:15;83861:1;83845:18;;;;;;;;;;;;;;83821:42;;83911:330;;;;;;;;83964:9;-1:-1:-1;;;;;83911:330:0;;;;;84004:13;-1:-1:-1;;;;;83911:330:0;;;;;84046:53;84074:9;84085:13;84046:27;:53::i;:::-;83911:330;;66000:1;83911:330;;;;;;84174:47;84196:9;84207:13;84174:21;:47::i;:::-;83911:330;;;83884:9;83894:13;83884:24;;;;;;;;;;;;;;;;;:357;-1:-1:-1;84262:15:0;;;;;83797:3;83749:544;;;-1:-1:-1;;;83090:3:0;;83047:1257;;;-1:-1:-1;84323:9:0;;-1:-1:-1;;82826:1514:0;:::o;68278:24::-;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;68278:24:0;;-1:-1:-1;68278:24:0;:::o;81347:189::-;81446:12;81478:50;81500:10;81512:15;81478:21;:50::i;71906:396::-;72097:25;67354:21;:19;:21::i;:::-;67711:31:::1;:29;:31::i;:::-;72155:44:::2;72185:5;;72155:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;::::0;;;;-1:-1:-1;;;;;;;;72155:29:0;::::2;::::0;;-1:-1:-1;72192:6:0;72155:29:::2;:44::i;:::-;72140:59;;72234:6;72225:7;-1:-1:-1::0;;;;;72217:45:0::2;;72242:5;;72249:12;72217:45;;;;;;;;;;;;;;;;;67753:1;71906:396:::0;;;;;;:::o;48881:87::-;48953:7;48946:14;;;;;;;;-1:-1:-1;;48946:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48920:13;;48946:14;;48953:7;;48946:14;;48953:7;48946:14;;;;;;;;;;;;;;;;;;;;;;;;80660:101;80707:16;80743:10;80736:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;80736:17:0;;;;;;;;;;;;;;;;;;;;;;80660:101;:::o;77152:137::-;67354:21;:19;:21::i;:::-;67711:31:::1;:29;:31::i;:::-;77255:26:::2;77261:8;77271:9;77255:5;:26::i;78610:414::-:0;67514:22;:20;:22::i;:::-;78690:8:::1;::::0;::::1;;78689:9;78681:40;;;;-1:-1:-1::0;;;78681:40:0::1;;;;;;;;;78765:33;-1:-1:-1::0;;;;;78740:21:0;::::1;;::::0;;;:12:::1;:21;::::0;;;;;::::1;;:58;::::0;::::1;;;;;;;78732:91;;;;-1:-1:-1::0;;;78732:91:0::1;;;;;;;;;78844:7;-1:-1:-1::0;;;;;78836:29:0::1;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;;;;;;;;78880:21:0;::::1;78904:26;78880:21:::0;;;:12:::1;:21;::::0;;;;:50;;-1:-1:-1;;78880:50:0::1;::::0;78904:26;78880:50:::1;;;;;78953:23;78968:7;78953;:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;;-1:-1:-1;;;;;78953:14:0::1;::::0;;;;;::::1;::::0;::::1;;::::0;;::::1;;;;;;;;;;:23;;;;:::i;:::-;78943:33:::0;;::::1;::::0;:7:::1;::::0;:33:::1;::::0;;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;78994:22:0::1;::::0;-1:-1:-1;;;;;78994:22:0;::::1;::::0;::::1;::::0;;;::::1;78610:414:::0;:::o;52879:269::-;52972:4;52989:129;52998:12;:10;:12::i;:::-;53012:7;53021:96;53060:15;53021:96;;;;;;;;;;;;;;;;;:11;:25;53033:12;:10;:12::i;:::-;-1:-1:-1;;;;;53021:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;53021:25:0;;;:34;;;;;;;;;;;:96;;:38;:96;:::i;68759:20::-;;;;;;:::o;77681:201::-;67354:21;:19;:21::i;:::-;77738:8:::1;::::0;::::1;;77730:35;;;;-1:-1:-1::0;;;77730:35:0::1;;;;;;;;;77784:6;::::0;-1:-1:-1;;;;;77784:6:0::1;77794:10;77784:20;77776:47;;;;-1:-1:-1::0;;;77776:47:0::1;;;;;;;;;77841:6;77834:13:::0;;-1:-1:-1;;;;;;77834:13:0::1;::::0;;77858:8:::1;:16:::0;;-1:-1:-1;;77858:16:0::1;::::0;;77681:201::o;81181:158::-;81259:16;81295:36;81320:10;81295:24;:36::i;50249:175::-;50335:4;50352:42;50362:12;:10;:12::i;:::-;50376:9;50387:6;50352:9;:42::i;74304:468::-;67354:21;:19;:21::i;:::-;67711:31:::1;:29;:31::i;:::-;74553:60:::2;74597:15;74553:36;74578:10;74553:24;:36::i;:::-;:43:::0;:60:::2;:43;:60;:::i;:::-;-1:-1:-1::0;;;;;74496:30:0;::::2;;::::0;;;:18:::2;:30;::::0;;;;;;;:117;;::::2;::::0;:54:::2;::::0;;::::2;::::0;:117;;;::::2;::::0;::::2;:::i;:::-;-1:-1:-1::0;;;;;;74631:30:0;;::::2;;::::0;;;:18:::2;:30;::::0;;;;;;;:65;;::::2;::::0;;:48:::2;::::0;;::::2;:65:::0;;;;;74624:72;;;74631:65;74624:72:::2;;::::0;::::2;74631:30:::0;74624:72:::2;:::i;:::-;;;74748:15;-1:-1:-1::0;;;;;74714:50:0::2;74736:10;-1:-1:-1::0;;;;;74714:50:0::2;;;;;;;;;;;74304:468:::0;;:::o;81544:96::-;81589:16;81625:7;81618:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;81618:14:0;;;;;;;;;;;;;;;;;;;;;;81544:96;:::o;76438:274::-;67354:21;:19;:21::i;:::-;67711:31:::1;:29;:31::i;:::-;76570:1:::2;76553:14;:18;76545:53;;;;-1:-1:-1::0;;;76545:53:0::2;;;;;;;;;76611:18;:35:::0;;;76664:40:::2;::::0;::::2;::::0;::::2;::::0;76632:14;;76664:40:::2;;;;;;;;;;76438:274:::0;:::o;68815:27::-;;;;;;;;;;79116:336;67514:22;:20;:22::i;:::-;79203:8:::1;::::0;::::1;;79202:9;79194:40;;;;-1:-1:-1::0;;;79194:40:0::1;;;;;;;;;79278:29;-1:-1:-1::0;;;;;79253:21:0;::::1;;::::0;;;:12:::1;:21;::::0;;;;;::::1;;:54;::::0;::::1;;;;;;;79245:89;;;;-1:-1:-1::0;;;79245:89:0::1;;;;;;;;;-1:-1:-1::0;;;;;79347:21:0;::::1;79371:26;79347:21:::0;;;:12:::1;:21;::::0;;;;;:50;;-1:-1:-1;;79347:50:0::1;::::0;;79415:29;::::1;::::0;79371:26;79415:29:::1;79116:336:::0;:::o;80348:239::-;67514:22;:20;:22::i;:::-;80427:8:::1;::::0;::::1;;80426:9;80418:40;;;;-1:-1:-1::0;;;80418:40:0::1;;;;;;;;;80490:7;::::0;;-1:-1:-1;;;;;80508:18:0;;::::1;-1:-1:-1::0;;;;;;80508:18:0;::::1;;::::0;;;80544:35:::1;::::0;80490:7;::::1;::::0;80544:35:::1;::::0;::::1;::::0;80518:8;;80490:7;;80544:35:::1;;;;;;;;;;67547:1;80348:239:::0;:::o;68165:21::-;;;-1:-1:-1;;;;;68165:21:0;;:::o;82059:159::-;82128:4;82177:33;82152:58;;50487:151;-1:-1:-1;;;;;50603:18:0;;;50576:7;50603:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;50487:151::o;81648:126::-;81711:4;81735:31;81755:10;81735;:19;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;81735:19:0;;;;;;;;;;;;;;;;;;;;;;;:31;;;;:::i;73816:282::-;67354:21;:19;:21::i;:::-;67711:31:::1;:29;:31::i;:::-;-1:-1:-1::0;;;;;73948:30:0;;::::2;;::::0;;;:18:::2;:30;::::0;;;;;;;:54:::2;::::0;;::::2;:76:::0;;;;::::2;::::0;;;;;;;;;::::2;::::0;;-1:-1:-1;;;;;;73948:76:0::2;::::0;;::::2;::::0;;::::2;::::0;;74042:48;::::2;::::0;73948:30;74042:48:::2;73816:282:::0;;:::o;84475:537::-;84553:6;84572:17;84592:38;84619:10;84592:26;:38::i;:::-;84572:58;;84637:32;84672:36;84697:10;84672:24;:36::i;:::-;84637:71;-1:-1:-1;84718:9:0;84713:268;84737:15;:22;84733:1;:26;84713:268;;;84900:75;84915:59;84943:10;84955:15;84971:1;84955:18;;;;;;;;;;;;;;84915:27;:59::i;:::-;84900:10;;:75;:14;:75;:::i;:::-;84887:88;-1:-1:-1;84761:3:0;;84713:268;;;-1:-1:-1;84994:10:0;;84475:537;-1:-1:-1;;;84475:537:0:o;67859:29::-;;;;;;-1:-1:-1;;;;;67859:29:0;;:::o;77425:151::-;67354:21;:19;:21::i;:::-;77481:8:::1;::::0;::::1;;77480:9;77472:40;;;;-1:-1:-1::0;;;77472:40:0::1;;;;;;;;;77523:6;:19:::0;;-1:-1:-1;;;;;;77523:19:0::1;77532:10;77523:19;::::0;;77553:8:::1;:15:::0;;-1:-1:-1;;77553:15:0::1;77523:19:::0;77553:15:::1;::::0;;77425:151::o;16274:99::-;15685:8;16274:99;:::o;10246:106::-;10334:10;10246:106;:::o;56026:346::-;-1:-1:-1;;;;;56128:19:0;;56120:68;;;;-1:-1:-1;;;56120:68:0;;;;;;;;;-1:-1:-1;;;;;56207:21:0;;56199:68;;;;-1:-1:-1;;;56199:68:0;;;;;;;;;-1:-1:-1;;;;;56280:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;56332:32;;;;;56310:6;;56332:32;;;;;;;;;;56026:346;;;:::o;87978:120::-;88057:7;;-1:-1:-1;;;;;88057:7:0;88043:10;:21;88035:55;;;;-1:-1:-1;;;88035:55:0;;;;;;;;;87978:120::o;85486:197::-;-1:-1:-1;;;;;85606:30:0;;;85583:6;85606:30;;;:18;:30;;;;;;;;:57;;;;;;:48;;;;:57;;;;:69;;85486:197::o;86280:167::-;86358:6;86384:55;86420:18;;86384:12;:35;;:55;;;;:::i;53638:539::-;-1:-1:-1;;;;;53744:20:0;;53736:70;;;;-1:-1:-1;;;53736:70:0;;;;;;;;;-1:-1:-1;;;;;53825:23:0;;53817:71;;;;-1:-1:-1;;;53817:71:0;;;;;;;;;53901:47;53922:6;53930:9;53941:6;53901:20;:47::i;:::-;53981:71;54003:6;53981:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;53981:17:0;;:9;:17;;;;;;;;;;;;:71;;:21;:71;:::i;:::-;-1:-1:-1;;;;;53961:17:0;;;:9;:17;;;;;;;;;;;:91;;;;54086:20;;;;;;;:32;;54111:6;54086:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;54063:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;54134:35;;;;;;;;;;54162:6;;54134:35;;42785:192;42871:7;42907:12;42899:6;;;;42891:29;;;;-1:-1:-1;;;42891:29:0;;;;;;;;;;-1:-1:-1;;;42943:5:0;;;42785:192::o;87641:329::-;87747:33;87732:10;87719:24;;;;:12;:24;;;;;;;;:61;;;;;;;;;87697:135;;;;-1:-1:-1;;;87697:135:0;;;;;;;;;87867:10;;:31;;-1:-1:-1;;;87867:31:0;;:10;;;;-1:-1:-1;;;;;87867:10:0;;:19;;:31;;87887:10;;87867:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87845:117;;;;-1:-1:-1;;;87845:117:0;;;;;;;;88106:184;88176:8;;;;88172:111;;;88223:6;;-1:-1:-1;;;;;88223:6:0;88209:10;:20;88201:70;;;;-1:-1:-1;;;88201:70:0;;;;;;;;85998:161;86073:6;86099:52;86132:18;;86099:9;:32;;:52;;;;:::i;41882:181::-;41940:7;41972:5;;;41996:6;;;;41988:46;;;;-1:-1:-1;;;41988:46:0;;;;;;;;54458:378;-1:-1:-1;;;;;54542:21:0;;54534:65;;;;-1:-1:-1;;;54534:65:0;;;;;;;;;54612:49;54641:1;54645:7;54654:6;54612:20;:49::i;:::-;54689:12;;:24;;54706:6;54689:24;:16;:24;:::i;:::-;54674:12;:39;-1:-1:-1;;;;;54745:18:0;;:9;:18;;;;;;;;;;;:30;;54768:6;54745:30;:22;:30;:::i;:::-;-1:-1:-1;;;;;54724:18:0;;:9;:18;;;;;;;;;;;:51;;;;54791:37;;54724:18;;:9;54791:37;;;;54821:6;;54791:37;;;;;;;;;;54458:378;;:::o;85147:152::-;-1:-1:-1;;;;;85249:30:0;85226:6;85249:30;;;:18;:30;;;;;:42;;85147:152::o;13224:355::-;13321:16;13356:13;13371:9;13384:13;13392:1;13395;13384:7;:13::i;:::-;13355:42;;;;13413:4;13408:164;;13434:31;;-1:-1:-1;;;13434:31:0;;;;;;;;13408:164;13499:19;13523:13;13527:1;13530:5;13523:3;:13::i;:::-;-1:-1:-1;13498:38:0;-1:-1:-1;13551:9:0;;-1:-1:-1;;;13551:9:0;85307:171;-1:-1:-1;;;;;85416:30:0;;;;;;:18;:30;;;;;;;;;:54;;85409:61;;;;;;;;;;;;;;;;;85383:16;;85409:61;;;85416:54;85409:61;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;85409:61:0;;;;;;;;;;;;;;;;;;;;;;;85307:171;;;:::o;12275:148::-;12347:4;12367:9;12380:13;12388:1;12391;12380:7;:13::i;:::-;12364:29;12275:148;-1:-1:-1;;;;;12275:148:0:o;86696:743::-;86748:7;;;86800:599;86824:10;:17;86820:21;;86800:599;;;86863:17;86883:10;86894:1;86883:13;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;86883:13:0;;-1:-1:-1;86993:38:0;86883:13;86993:27;:38::i;:::-;:42;86989:98;;;87056:15;;;;;86989:98;87181:32;87216:35;87241:9;87216:24;:35::i;:::-;87270:22;;87181:70;;-1:-1:-1;87270:26:0;87266:122;;87348:22;;87330:41;;:13;;:41;:17;:41;:::i;:::-;87314:57;;87266:122;-1:-1:-1;;86843:3:0;;86800:599;;;-1:-1:-1;87418:13:0;-1:-1:-1;86696:743:0;:::o;85691:189::-;-1:-1:-1;;;;;85810:30:0;;;;;;;:18;:30;;;;;;;;:57;;;;;:48;;;;:57;;;;;;:62;;;;85803:69;;;;;;;;;;-1:-1:-1;;85803:69:0;;;;;;;;;;;;;;;;;;;;;;;;85781:12;;85803:69;;85810:62;;85803:69;;85810:62;85803:69;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85691:189;;;;:::o;61968:226::-;62067:12;62099:87;62121:6;62129:4;62135:5;62099:87;;;;;;;;;;;;;;;;;:21;:87::i;55168:418::-;-1:-1:-1;;;;;55252:21:0;;55244:67;;;;-1:-1:-1;;;55244:67:0;;;;;;;;;55324:49;55345:7;55362:1;55366:6;55324:20;:49::i;:::-;55407:68;55430:6;55407:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;55407:18:0;;:9;:18;;;;;;;;;;;;:68;;:22;:68;:::i;:::-;-1:-1:-1;;;;;55386:18:0;;:9;:18;;;;;;;;;;:89;55501:12;;:24;;55518:6;55501:24;:16;:24;:::i;:::-;55486:12;:39;55541:37;;55567:1;;-1:-1:-1;;;;;55541:37:0;;;;;;;55571:6;;55541:37;;40721:215;40777:6;40807:5;;;40832:6;;;;;;:16;;;40847:1;40842;:6;;40832:16;40831:38;;;;40858:1;40854;:5;:14;;;;;40867:1;40863;:5;40854:14;40823:84;;;;-1:-1:-1;;;40823:84:0;;;;;;;;19466:144;19541:6;19567:35;19575:8;:1;19581;19575:8;:5;:8;:::i;:::-;15685;19567:7;:35::i;57397:92::-;;;;:::o;19819:144::-;19894:6;19920:35;19928:23;:1;15685:8;19928:23;:5;:23;:::i;:::-;19953:1;19920:7;:35::i;11710:307::-;11824:8;;11781:7;;;;;11843:129;11867:6;11863:1;:10;11843:129;;;11907:1;-1:-1:-1;;;;;11899:9:0;:1;11901;11899:4;;;;;;;;;;;;;;-1:-1:-1;;;;;11899:9:0;;11895:66;;;11937:1;-1:-1:-1;11940:4:0;;-1:-1:-1;11929:16:0;;-1:-1:-1;11929:16:0;11895:66;11875:3;;11843:129;;;;-1:-1:-1;;12003:5:0;11982:27;;;;;11710:307;;;;;;:::o;13787:551::-;13945:8;;13885:16;;13903:7;;13972:16;;;13964:53;;;;-1:-1:-1;;;13964:53:0;;;;;;;;;14028:29;14083:1;14074:6;:10;14060:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14060:25:0;-1:-1:-1;14028:57:0;-1:-1:-1;14101:9:0;14096:85;14120:5;14116:1;:9;14096:85;;;14165:1;14167;14165:4;;;;;;;;;;;;;;14147:12;14160:1;14147:15;;;;;;;;-1:-1:-1;;;;;14147:22:0;;;:15;;;;;;;;;;;:22;14127:3;;14096:85;;;-1:-1:-1;14216:1:0;14208:9;;14191:98;14223:6;14219:1;:10;14191:98;;;14273:1;14275;14273:4;;;;;;;;;;;;;;14251:12;14268:1;14264;:5;14251:19;;;;;;;;-1:-1:-1;;;;;14251:26:0;;;:19;;;;;;;;;;;:26;14231:3;;14191:98;;;;14307:12;14321:1;14323:5;14321:8;;;;;;;;;;;;;;14299:31;;;;;;13787:551;;;;;:::o;62450:316::-;62577:12;62635:5;62610:21;:30;;62602:81;;;;-1:-1:-1;;;62602:81:0;;;;;;;;;62701:57;62724:6;62732:4;62738:5;62745:12;62701:22;:57::i;42346:136::-;42404:7;42431:43;42435:1;42438;42431:43;;;;;;;;;;;;;;;;;:3;:43::i;38694:568::-;38750:6;38994;38990:47;;-1:-1:-1;39024:1:0;39017:8;;38990:47;39059:1;-1:-1:-1;;39059:7:0;:27;;;;;-1:-1:-1;;;39070:1:0;:16;39059:27;39057:30;39049:82;;;;-1:-1:-1;;;39049:82:0;;;;;;;;;39155:5;;;39159:1;39155;:5;:1;39179:5;;;;;:10;39171:62;;;;-1:-1:-1;;;39171:62:0;;;;;;;;18917:337;18977:6;19004;18996:35;;;;-1:-1:-1;;;18996:35:0;;;;;;;;;-1:-1:-1;;;19050:1:0;:16;;:27;;;;19070:1;-1:-1:-1;;19070:7:0;;19050:27;19042:53;;;;-1:-1:-1;;;19042:53:0;;;;;;;;;19108:13;19124:8;:1;19130;19124:8;:5;:8;:::i;:::-;19108:24;;19155:1;19151;19147;:5;:9;:23;;;;;19164:1;19160;:5;;;;;;:10;;19147:23;19143:78;;;19196:13;:6;19207:1;19196:13;:10;:13;:::i;62774:979::-;62904:12;62937:18;62948:6;62937:10;:18::i;:::-;62929:60;;;;-1:-1:-1;;;62929:60:0;;;;;;;;;63063:12;63077:23;63104:6;-1:-1:-1;;;;;63104:11:0;63124:8;63135:4;63104:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63062:78;;;;63155:7;63151:595;;;63186:10;-1:-1:-1;63179:17:0;;-1:-1:-1;63179:17:0;63151:595;63300:17;;:21;63296:439;;63563:10;63557:17;63624:15;63611:10;63607:2;63603:19;63596:44;63511:148;63706:12;63699:20;;-1:-1:-1;;;63699:20:0;;;;;;;;;39736:271;39792:6;39819;39811:51;;;;-1:-1:-1;;;39811:51:0;;;;;;;;;39883:1;-1:-1:-1;;39883:7:0;:27;;;;;-1:-1:-1;;;39894:1:0;:16;39883:27;39881:30;39873:76;;;;-1:-1:-1;;;39873:76:0;;;;;;;;;39962:8;39977:1;39973;:5;;;;;;;39736:271;-1:-1:-1;;;;39736:271:0:o;40258:218::-;40314:6;40344:5;;;40369:6;;;;;;:16;;;40384:1;40379;:6;;40369:16;40368:38;;;;40395:1;40391;:5;:14;;;;;40404:1;40400;:5;40391:14;40360:87;;;;-1:-1:-1;;;40360:87:0;;;;;;;;58279:619;58339:4;58807:20;;58650:66;58847:23;;;;;;:42;;-1:-1:-1;;58874:15:0;;;58839:51;-1:-1:-1;;58279:619:0:o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:130;72:20;;-1:-1;;;;;44093:54;;45862:35;;45852:2;;45911:1;;45901:12;291:336;;;405:3;398:4;390:6;386:17;382:27;372:2;;-1:-1;;413:12;372:2;-1:-1;443:20;;483:18;472:30;;469:2;;;-1:-1;;505:12;469:2;549:4;541:6;537:17;525:29;;600:3;549:4;580:17;541:6;566:32;;563:41;560:2;;;617:1;;607:12;907:241;;1011:2;999:9;990:7;986:23;982:32;979:2;;;-1:-1;;1017:12;979:2;1079:53;1124:7;1100:22;1079:53;;1155:366;;;1276:2;1264:9;1255:7;1251:23;1247:32;1244:2;;;-1:-1;;1282:12;1244:2;1344:53;1389:7;1365:22;1344:53;;;1334:63;;1452:53;1497:7;1434:2;1477:9;1473:22;1452:53;;;1442:63;;1238:283;;;;;;1528:615;;;;;1685:2;1673:9;1664:7;1660:23;1656:32;1653:2;;;-1:-1;;1691:12;1653:2;85:6;72:20;97:33;124:5;97:33;;;1743:63;-1:-1;1843:2;1882:22;;72:20;97:33;72:20;97:33;;;1851:63;-1:-1;1979:2;1964:18;;1951:32;2003:18;1992:30;;1989:2;;;-1:-1;;2025:12;1989:2;2063:64;2119:7;2110:6;2099:9;2095:22;2063:64;;;1647:496;;;;-1:-1;2053:74;-1:-1;;;;1647:496;2150:489;;;;2287:2;2275:9;2266:7;2262:23;2258:32;2255:2;;;-1:-1;;2293:12;2255:2;2355:53;2400:7;2376:22;2355:53;;;2345:63;;2463:53;2508:7;2445:2;2488:9;2484:22;2463:53;;;2453:63;;2553:2;2595:9;2591:22;701:20;2561:62;;2249:390;;;;;;2646:491;;;;2784:2;2772:9;2763:7;2759:23;2755:32;2752:2;;;-1:-1;;2790:12;2752:2;85:6;72:20;97:33;124:5;97:33;;;2842:63;-1:-1;2942:2;2981:22;;72:20;97:33;72:20;97:33;;;2746:391;;2950:63;;-1:-1;;;3050:2;3089:22;;;;837:20;;2746:391;3144:364;;;3264:2;3252:9;3243:7;3239:23;3235:32;3232:2;;;-1:-1;;3270:12;3232:2;3332:53;3377:7;3353:22;3332:53;;;3322:63;3422:2;3460:22;;;;701:20;;-1:-1;;;3226:282;3888:615;;;;;4045:2;4033:9;4024:7;4020:23;4016:32;4013:2;;;-1:-1;;4051:12;4013:2;85:6;72:20;97:33;124:5;97:33;;;4103:63;-1:-1;4203:2;4242:22;;837:20;;-1:-1;4339:2;4324:18;;4311:32;4363:18;4352:30;;4349:2;;;-1:-1;;4385:12;4510:257;;4622:2;4610:9;4601:7;4597:23;4593:32;4590:2;;;-1:-1;;4628:12;4590:2;223:6;217:13;46008:5;43782:13;43775:21;45986:5;45983:32;45973:2;;-1:-1;;46019:12;4774:239;;4877:2;4865:9;4856:7;4852:23;4848:32;4845:2;;;-1:-1;;4883:12;4845:2;-1:-1;701:20;;4839:174;-1:-1;4839:174;8089:297;;42692:6;42687:3;42680:19;45235:6;45230:3;42729:4;42724:3;42720:14;45212:30;-1:-1;42729:4;45282:6;42724:3;45273:16;;45266:27;42729:4;45668:7;;45672:2;8372:6;45652:14;45648:28;42724:3;8341:39;;8334:46;;8189:197;;;;;;8394:323;;8526:5;41837:12;42692:6;42687:3;42680:19;8609:52;8654:6;42729:4;42724:3;42720:14;42729:4;8635:5;8631:16;8609:52;;;45668:7;45652:14;-1:-1;;45648:28;8673:39;;;;42729:4;8673:39;;8474:243;-1:-1;;8474:243;22997:271;;9234:5;41837:12;9345:52;9390:6;9385:3;9378:4;9371:5;9367:16;9345:52;;;9409:16;;;;;23131:137;-1:-1;;23131:137;23275:222;-1:-1;;;;;44093:54;;;;5926:37;;23402:2;23387:18;;23373:124;23749:333;-1:-1;;;;;44093:54;;;5926:37;;44093:54;;24068:2;24053:18;;5926:37;23904:2;23889:18;;23875:207;24089:370;24266:2;24280:47;;;41837:12;;24251:18;;;42680:19;;;24089:370;;24266:2;41507:14;;;;42720;;;;24089:370;6534:260;6559:6;6556:1;6553:13;6534:260;;;6620:13;;-1:-1;;;;;44093:54;5926:37;;42394:14;;;;5422;;;;44104:42;6574:9;6534:260;;;-1:-1;24333:116;;24237:222;-1:-1;;;;;;24237:222;24466:474;24695:2;24709:47;;;41837:12;;24680:18;;;42680:19;;;24466:474;;24695:2;42720:14;;;;;;7346:17;;;7337:27;;;;41507:14;;;24466:474;7500:408;7525:6;7522:1;7519:13;7500:408;;;7577:20;;;-1:-1;;7577:20;7565:33;;7626:13;;21833:23;;-1:-1;;;;;44093:54;;;5926:37;;21995:16;;;21989:23;44093:54;22066:14;;;5926:37;22149:16;;;22143:23;22218:14;;;9830:36;22321:4;22310:16;;;22304:23;44309:4;44298:16;22377:14;;;22836:35;22471:4;22460:16;;;22454:23;21762:4;22497:14;;;22490:38;;;21762:4;22471;22543:71;21753:14;;;22454:23;22543:71;;;7887:14;;;;7646:124;-1:-1;;;42394:14;;;;-1:-1;;7547:1;7540:9;7500:408;;;-1:-1;24762:168;;24666:274;-1:-1;;;;;;;;24666:274;24947:210;43782:13;;43775:21;8020:34;;25068:2;25053:18;;25039:118;25164:326;;25319:2;25340:17;25333:47;25394:86;25319:2;25308:9;25304:18;25466:6;25458;25394:86;;25497:521;;25698:2;25719:17;25712:47;25773:86;25698:2;25687:9;25683:18;25845:6;25837;25773:86;;;25907:9;25901:4;25897:20;25892:2;25881:9;25877:18;25870:48;25932:76;26003:4;25994:6;25932:76;;;25924:84;25669:349;-1:-1;;;;;;25669:349;26025:306;;26170:2;26191:17;26184:47;26245:76;26170:2;26159:9;26155:18;26307:6;26245:76;;26607:250;26748:2;26733:18;;45774:1;45764:12;;45754:2;;45780:9;45754:2;9695:64;;;26719:138;;26864:218;9830:36;;;26989:2;26974:18;;26960:122;27406:416;27606:2;27620:47;;;10574:2;27591:18;;;42680:19;-1:-1;;;42720:14;;;10590:41;10650:12;;;27577:245;27829:416;28029:2;28043:47;;;10901:2;28014:18;;;42680:19;10937:34;42720:14;;;10917:55;-1:-1;;;10992:12;;;10985:27;11031:12;;;28000:245;28252:416;28452:2;28466:47;;;11282:2;28437:18;;;42680:19;-1:-1;;;42720:14;;;11298:44;11361:12;;;28423:245;28675:416;28875:2;28889:47;;;11612:2;28860:18;;;42680:19;11648:26;42720:14;;;11628:47;11694:12;;;28846:245;29098:416;29298:2;29312:47;;;11945:2;29283:18;;;42680:19;11981:26;42720:14;;;11961:47;12027:12;;;29269:245;29521:416;29721:2;29735:47;;;12278:2;29706:18;;;42680:19;12314:34;42720:14;;;12294:55;-1:-1;;;12369:12;;;12362:26;12407:12;;;29692:245;29944:416;30144:2;30158:47;;;12658:2;30129:18;;;42680:19;12694:29;42720:14;;;12674:50;12743:12;;;30115:245;30367:416;30567:2;30581:47;;;12994:2;30552:18;;;42680:19;13030:34;42720:14;;;13010:55;-1:-1;;;13085:12;;;13078:25;13122:12;;;30538:245;30790:416;30990:2;31004:47;;;13373:2;30975:18;;;42680:19;13409:34;42720:14;;;13389:55;-1:-1;;;13464:12;;;13457:30;13506:12;;;30961:245;31213:416;31413:2;31427:47;;;13757:2;31398:18;;;42680:19;13793:33;42720:14;;;13773:54;13846:12;;;31384:245;31636:416;31836:2;31850:47;;;14097:2;31821:18;;;42680:19;-1:-1;;;42720:14;;;14113:43;14175:12;;;31807:245;32059:416;32259:2;32273:47;;;14426:2;32244:18;;;42680:19;-1:-1;;;42720:14;;;14442:45;14506:12;;;32230:245;32482:416;32682:2;32696:47;;;14757:2;32667:18;;;42680:19;14793:34;42720:14;;;14773:55;-1:-1;;;14848:12;;;14841:29;14889:12;;;32653:245;32905:416;33105:2;33119:47;;;15140:2;33090:18;;;42680:19;15176:26;42720:14;;;15156:47;15222:12;;;33076:245;33328:416;33528:2;33542:47;;;15473:2;33513:18;;;42680:19;15509:34;42720:14;;;15489:55;-1:-1;;;15564:12;;;15557:25;15601:12;;;33499:245;33751:416;33951:2;33965:47;;;15852:2;33936:18;;;42680:19;15888:31;42720:14;;;15868:52;15939:12;;;33922:245;34174:416;34374:2;34388:47;;;16190:2;34359:18;;;42680:19;16226:34;42720:14;;;16206:55;-1:-1;;;16281:12;;;16274:31;16324:12;;;34345:245;34597:416;34797:2;34811:47;;;16575:2;34782:18;;;42680:19;-1:-1;;;42720:14;;;16591:37;16647:12;;;34768:245;35020:416;35220:2;35234:47;;;16898:2;35205:18;;;42680:19;-1:-1;;;42720:14;;;16914:36;16969:12;;;35191:245;35443:416;35643:2;35657:47;;;17220:2;35628:18;;;42680:19;17256:34;42720:14;;;17236:55;-1:-1;;;17311:12;;;17304:25;17348:12;;;35614:245;35866:416;36066:2;36080:47;;;17599:2;36051:18;;;42680:19;-1:-1;;;42720:14;;;17615:37;17671:12;;;36037:245;36289:416;36489:2;36503:47;;;17922:2;36474:18;;;42680:19;17958:34;42720:14;;;17938:55;-1:-1;;;18013:12;;;18006:29;18054:12;;;36460:245;36712:416;36912:2;36926:47;;;18305:2;36897:18;;;42680:19;18341:34;42720:14;;;18321:55;-1:-1;;;18396:12;;;18389:28;18436:12;;;36883:245;37135:416;37335:2;37349:47;;;18687:2;37320:18;;;42680:19;18723:31;42720:14;;;18703:52;18774:12;;;37306:245;37558:416;37758:2;37772:47;;;19025:2;37743:18;;;42680:19;19061:34;42720:14;;;19041:55;-1:-1;;;19116:12;;;19109:28;19156:12;;;37729:245;37981:416;38181:2;38195:47;;;19407:2;38166:18;;;42680:19;-1:-1;;;42720:14;;;19423:41;19483:12;;;38152:245;38404:416;38604:2;38618:47;;;19734:2;38589:18;;;42680:19;19770:34;42720:14;;;19750:55;-1:-1;;;19825:12;;;19818:28;19865:12;;;38575:245;38827:416;39027:2;39041:47;;;20116:2;39012:18;;;42680:19;-1:-1;;;42720:14;;;20132:44;20195:12;;;38998:245;39250:416;39450:2;39464:47;;;39435:18;;;42680:19;20482:34;42720:14;;;20462:55;20536:12;;;39421:245;39673:416;39873:2;39887:47;;;20787:2;39858:18;;;42680:19;-1:-1;;;42720:14;;;20803:45;20867:12;;;39844:245;40096:416;40296:2;40310:47;;;21118:2;40281:18;;;42680:19;21154:33;42720:14;;;21134:54;21207:12;;;40267:245;40519:416;40719:2;40733:47;;;21458:2;40704:18;;;42680:19;-1:-1;;;42720:14;;;21474:39;21532:12;;;40690:245;41171:214;44309:4;44298:16;;;;22836:35;;41294:2;41279:18;;41265:120;45308:268;45373:1;45380:101;45394:6;45391:1;45388:13;45380:101;;;45461:11;;;45455:18;45442:11;;;45435:39;45416:2;45409:10;45380:101;;;45496:6;45493:1;45490:13;45487:2;;;45373:1;45552:6;45547:3;45543:16;45536:27;45487:2;;45357:219;;;;45803:117;-1:-1;;;;;44093:54;;45862:35;;45852:2;;45911:1;;45901:12

Swarm Source

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