Source Code
More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 1,346 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Approve | 23855962 | 88 days ago | IN | 0 ETH | 0.00000876 | ||||
| Approve | 23530324 | 134 days ago | IN | 0 ETH | 0.00001555 | ||||
| Approve | 23322401 | 163 days ago | IN | 0 ETH | 0.00005357 | ||||
| Approve | 23101131 | 194 days ago | IN | 0 ETH | 0.00001055 | ||||
| Approve | 22841057 | 230 days ago | IN | 0 ETH | 0.00005136 | ||||
| Approve | 22164489 | 325 days ago | IN | 0 ETH | 0.00001187 | ||||
| Approve | 21309337 | 444 days ago | IN | 0 ETH | 0.00049525 | ||||
| Approve | 20998823 | 488 days ago | IN | 0 ETH | 0.0003489 | ||||
| Approve | 20947450 | 495 days ago | IN | 0 ETH | 0.00019912 | ||||
| Approve | 20839706 | 510 days ago | IN | 0 ETH | 0.00027656 | ||||
| Approve | 20259026 | 591 days ago | IN | 0 ETH | 0.00004968 | ||||
| Approve | 19485975 | 699 days ago | IN | 0 ETH | 0.00128856 | ||||
| Approve | 18661840 | 815 days ago | IN | 0 ETH | 0.00059106 | ||||
| Approve | 18343227 | 859 days ago | IN | 0 ETH | 0.00047103 | ||||
| Approve | 18342987 | 859 days ago | IN | 0 ETH | 0.00083754 | ||||
| Approve | 16484308 | 1121 days ago | IN | 0 ETH | 0.0005168 | ||||
| Approve | 16484308 | 1121 days ago | IN | 0 ETH | 0.0005168 | ||||
| Approve | 15204169 | 1306 days ago | IN | 0 ETH | 0.00019262 | ||||
| Approve | 14424227 | 1431 days ago | IN | 0 ETH | 0.00042945 | ||||
| Approve | 12879287 | 1672 days ago | IN | 0 ETH | 0.00021906 | ||||
| Approve | 12799911 | 1685 days ago | IN | 0 ETH | 0.00017524 | ||||
| Approve | 12697459 | 1700 days ago | IN | 0 ETH | 0.00023366 | ||||
| Transfer | 12308527 | 1761 days ago | IN | 0 ETH | 0.00161421 | ||||
| Approve | 12024514 | 1804 days ago | IN | 0 ETH | 0.00290765 | ||||
| Approve | 11974518 | 1812 days ago | IN | 0 ETH | 0.00119752 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
DynamicDollarFinance
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2020-12-30
*/
// 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;
}
}
// File: @openzeppelin/contracts/access/Ownable.sol
pragma solidity ^0.6.0;
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor () internal {
address msgSender = _msgSender();
_owner = msgSender;
emit OwnershipTransferred(address(0), msgSender);
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(_owner == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
emit OwnershipTransferred(_owner, address(0));
_owner = address(0);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
emit OwnershipTransferred(_owner, newOwner);
_owner = newOwner;
}
}
// 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);
}
// 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;
}
}
// 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);
}
}
}
}
// File: @openzeppelin/contracts/token/ERC20/ERC20.sol
pragma solidity ^0.6.0;
/**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
* For a generic mechanism see {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 { }
}
// File: @openzeppelin/contracts/token/ERC20/ERC20Burnable.sol
pragma solidity ^0.6.0;
/**
* @dev Extension of {ERC20} that allows token holders to destroy both their own
* tokens and those that they have an allowance for, in a way that can be
* recognized off-chain (via event analysis).
*/
abstract contract ERC20Burnable is Context, ERC20 {
/**
* @dev Destroys `amount` tokens from the caller.
*
* See {ERC20-_burn}.
*/
function burn(uint256 amount) public virtual {
_burn(_msgSender(), amount);
}
/**
* @dev Destroys `amount` tokens from `account`, deducting from the caller's
* allowance.
*
* See {ERC20-_burn} and {ERC20-allowance}.
*
* Requirements:
*
* - the caller must have allowance for ``accounts``'s tokens of at least
* `amount`.
*/
function burnFrom(address account, uint256 amount) public virtual {
uint256 decreasedAllowance = allowance(account, _msgSender()).sub(amount, "ERC20: burn amount exceeds allowance");
_approve(account, _msgSender(), decreasedAllowance);
_burn(account, amount);
}
}
// File: contracts/governance.sol
pragma solidity ^0.6.0;
pragma experimental ABIEncoderV2;
abstract contract DeligateERC20 is ERC20Burnable {
/// @notice A record of each accounts delegate
mapping (address => address) internal _delegates;
/// @notice A checkpoint for marking number of votes from a given block
struct Checkpoint {
uint32 fromBlock;
uint256 votes;
}
/// @notice A record of votes checkpoints for each account, by index
mapping (address => mapping (uint32 => Checkpoint)) public checkpoints;
/// @notice The number of checkpoints for each account
mapping (address => uint32) public numCheckpoints;
/// @notice The EIP-712 typehash for the contract's domain
bytes32 public constant DOMAIN_TYPEHASH = keccak256("EIP712Domain(string name,uint256 chainId,address verifyingContract)");
/// @notice The EIP-712 typehash for the delegation struct used by the contract
bytes32 public constant DELEGATION_TYPEHASH = keccak256("Delegation(address delegatee,uint256 nonce,uint256 expiry)");
/// @notice A record of states for signing / validating signatures
mapping (address => uint) public nonces;
// support delegates mint
function _mint(address account, uint256 amount) internal override virtual {
super._mint(account, amount);
// add delegates to the minter
_moveDelegates(address(0), _delegates[account], amount);
}
function _transfer(address sender, address recipient, uint256 amount) internal override virtual {
super._transfer(sender, recipient, amount);
_moveDelegates(_delegates[sender], _delegates[recipient], amount);
}
// support delegates burn
function burn(uint256 amount) public override virtual {
super.burn(amount);
// del delegates to backhole
_moveDelegates(_delegates[_msgSender()], address(0), amount);
}
function burnFrom(address account, uint256 amount) public override virtual {
super.burnFrom(account, amount);
// del delegates to the backhole
_moveDelegates(_delegates[account], address(0), amount);
}
/**
* @notice Delegate votes from `msg.sender` to `delegatee`
* @param delegatee The address to delegate votes to
*/
function delegate(address delegatee) external {
return _delegate(msg.sender, delegatee);
}
/**
* @notice Delegates votes from signatory to `delegatee`
* @param delegatee The address to delegate votes to
* @param nonce The contract state required to match the signature
* @param expiry The time at which to expire the signature
* @param v The recovery byte of the signature
* @param r Half of the ECDSA signature pair
* @param s Half of the ECDSA signature pair
*/
function delegateBySig(
address delegatee,
uint nonce,
uint expiry,
uint8 v,
bytes32 r,
bytes32 s
)
external
{
bytes32 domainSeparator = keccak256(
abi.encode(
DOMAIN_TYPEHASH,
keccak256(bytes(name())),
getChainId(),
address(this)
)
);
bytes32 structHash = keccak256(
abi.encode(
DELEGATION_TYPEHASH,
delegatee,
nonce,
expiry
)
);
bytes32 digest = keccak256(
abi.encodePacked(
"\x19\x01",
domainSeparator,
structHash
)
);
address signatory = ecrecover(digest, v, r, s);
require(signatory != address(0), "Governance::delegateBySig: invalid signature");
require(nonce == nonces[signatory]++, "Governance::delegateBySig: invalid nonce");
require(now <= expiry, "Governance::delegateBySig: signature expired");
return _delegate(signatory, delegatee);
}
/**
* @notice Gets the current votes balance for `account`
* @param account The address to get votes balance
* @return The number of current votes for `account`
*/
function getCurrentVotes(address account)
external
view
returns (uint256)
{
uint32 nCheckpoints = numCheckpoints[account];
return nCheckpoints > 0 ? checkpoints[account][nCheckpoints - 1].votes : 0;
}
/**
* @notice Determine the prior number of votes for an account as of a block number
* @dev Block number must be a finalized block or else this function will revert to prevent misinformation.
* @param account The address of the account to check
* @param blockNumber The block number to get the vote balance at
* @return The number of votes the account had as of the given block
*/
function getPriorVotes(address account, uint blockNumber)
external
view
returns (uint256)
{
require(blockNumber < block.number, "Governance::getPriorVotes: not yet determined");
uint32 nCheckpoints = numCheckpoints[account];
if (nCheckpoints == 0) {
return 0;
}
// First check most recent balance
if (checkpoints[account][nCheckpoints - 1].fromBlock <= blockNumber) {
return checkpoints[account][nCheckpoints - 1].votes;
}
// Next check implicit zero balance
if (checkpoints[account][0].fromBlock > blockNumber) {
return 0;
}
uint32 lower = 0;
uint32 upper = nCheckpoints - 1;
while (upper > lower) {
uint32 center = upper - (upper - lower) / 2; // ceil, avoiding overflow
Checkpoint memory cp = checkpoints[account][center];
if (cp.fromBlock == blockNumber) {
return cp.votes;
} else if (cp.fromBlock < blockNumber) {
lower = center;
} else {
upper = center - 1;
}
}
return checkpoints[account][lower].votes;
}
function _delegate(address delegator, address delegatee)
internal
{
address currentDelegate = _delegates[delegator];
uint256 delegatorBalance = balanceOf(delegator); // balance of underlying balances (not scaled);
_delegates[delegator] = delegatee;
_moveDelegates(currentDelegate, delegatee, delegatorBalance);
emit DelegateChanged(delegator, currentDelegate, delegatee);
}
function _moveDelegates(address srcRep, address dstRep, uint256 amount) internal {
if (srcRep != dstRep && amount > 0) {
if (srcRep != address(0)) {
// decrease old representative
uint32 srcRepNum = numCheckpoints[srcRep];
uint256 srcRepOld = srcRepNum > 0 ? checkpoints[srcRep][srcRepNum - 1].votes : 0;
uint256 srcRepNew = srcRepOld.sub(amount);
_writeCheckpoint(srcRep, srcRepNum, srcRepOld, srcRepNew);
}
if (dstRep != address(0)) {
// increase new representative
uint32 dstRepNum = numCheckpoints[dstRep];
uint256 dstRepOld = dstRepNum > 0 ? checkpoints[dstRep][dstRepNum - 1].votes : 0;
uint256 dstRepNew = dstRepOld.add(amount);
_writeCheckpoint(dstRep, dstRepNum, dstRepOld, dstRepNew);
}
}
}
function _writeCheckpoint(
address delegatee,
uint32 nCheckpoints,
uint256 oldVotes,
uint256 newVotes
)
internal
{
uint32 blockNumber = safe32(block.number, "Governance::_writeCheckpoint: block number exceeds 32 bits");
if (nCheckpoints > 0 && checkpoints[delegatee][nCheckpoints - 1].fromBlock == blockNumber) {
checkpoints[delegatee][nCheckpoints - 1].votes = newVotes;
} else {
checkpoints[delegatee][nCheckpoints] = Checkpoint(blockNumber, newVotes);
numCheckpoints[delegatee] = nCheckpoints + 1;
}
emit DelegateVotesChanged(delegatee, oldVotes, newVotes);
}
function safe32(uint n, string memory errorMessage) internal pure returns (uint32) {
require(n < 2**32, errorMessage);
return uint32(n);
}
function getChainId() internal pure returns (uint) {
uint256 chainId;
assembly { chainId := chainid() }
return chainId;
}
/// @notice An event thats emitted when an account changes its delegate
event DelegateChanged(address indexed delegator, address indexed fromDelegate, address indexed toDelegate);
/// @notice An event thats emitted when a delegate account's vote balance changes
event DelegateVotesChanged(address indexed delegate, uint previousBalance, uint newBalance);
}
// SPDX-License-Identifier: DynamicDollar.Finance
/**
* @author DynamicDollar.Finance
*
* @dev Contract for DynamicDollar.Finance token with burn support
*/
pragma solidity ^0.6.0;
contract DynamicDollarFinance is DeligateERC20, Ownable {
uint256 private constant maxSupply = 210 * 1e3 * 1e18; // the total supply
address private _minter;
constructor() public ERC20("DynamicDollar.Finance", "DFI") {
_minter = _msgSender();
}
// mint with max supply
function mint(address _to, uint256 _amount) public onlyMinter returns (bool) {
if(_amount.add(totalSupply()) > maxSupply) {
return false;
}
_mint(_to, _amount);
return true;
}
function setMinter(address _addr) external onlyOwner {
_minter = _addr;
}
function isMinter(address account) public view returns (bool) {
return _minter == account;
}
modifier onlyMinter() {
require(isMinter(_msgSender()), "Error: caller is not the minter");
_;
}
/// @dev Method to claim junk and accidentally sent tokens
function rescueTokens(
IERC20 _token,
address payable _to,
uint256 _balance
) external onlyOwner {
require(_to != address(0), "can not send to zero address");
if (_token == IERC20(0)) {
// for Ether
uint256 totalBalance = address(this).balance;
uint256 balance = (_balance == 0) ? totalBalance : min(totalBalance, _balance);
_to.transfer(balance);
} else {
// any other erc20
uint256 totalBalance = _token.balanceOf(address(this));
uint256 balance = _balance == 0 ? totalBalance : min(totalBalance, _balance);
require(balance > 0, "trying to send 0 balance");
_token.transfer(_to, balance);
}
}
function min(uint256 a, uint256 b) internal pure returns (uint256) {
return a < b ? a : b;
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegator","type":"address"},{"indexed":true,"internalType":"address","name":"fromDelegate","type":"address"},{"indexed":true,"internalType":"address","name":"toDelegate","type":"address"}],"name":"DelegateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegate","type":"address"},{"indexed":false,"internalType":"uint256","name":"previousBalance","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newBalance","type":"uint256"}],"name":"DelegateVotesChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DELEGATION_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOMAIN_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint32","name":"","type":"uint32"}],"name":"checkpoints","outputs":[{"internalType":"uint32","name":"fromBlock","type":"uint32"},{"internalType":"uint256","name":"votes","type":"uint256"}],"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":"delegatee","type":"address"}],"name":"delegate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"delegateBySig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getCurrentVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"getPriorVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"numCheckpoints","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"_token","type":"address"},{"internalType":"address payable","name":"_to","type":"address"},{"internalType":"uint256","name":"_balance","type":"uint256"}],"name":"rescueTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"setMinter","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":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
60806040523480156200001157600080fd5b506040518060400160405280601581526020017f44796e616d6963446f6c6c61722e46696e616e636500000000000000000000008152506040518060400160405280600381526020016244464960e81b81525081600390805190602001906200007c92919062000130565b5080516200009290600490602084019062000130565b50506005805460ff19166012179055506000620000ae6200012c565b600a80546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350620001066200012c565b600b80546001600160a01b0319166001600160a01b0392909216919091179055620001cc565b3390565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200017357805160ff1916838001178555620001a3565b82800160010185558215620001a3579182015b82811115620001a357825182559160200191906001019062000186565b50620001b1929150620001b5565b5090565b5b80821115620001b15760008155600101620001b6565b6120f280620001dc6000396000f3fe608060405234801561001057600080fd5b50600436106101cf5760003560e01c806379cc679011610104578063b4b5ea57116100a2578063e7a324dc11610071578063e7a324dc146103bb578063f1127ed8146103c3578063f2fde38b146103e4578063fca3b5aa146103f7576101cf565b8063b4b5ea571461036f578063c3cda52014610382578063cea9d26f14610395578063dd62ed3e146103a8576101cf565b806395d89b41116100de57806395d89b411461032e578063a457c2d714610336578063a9059cbb14610349578063aa271e1a1461035c576101cf565b806379cc6790146102f35780637ecebe00146103065780638da5cb5b14610319576101cf565b806340c10f19116101715780636fcfff451161014b5780636fcfff45146102a557806370a08231146102c5578063715018a6146102d8578063782d6fe1146102e0576101cf565b806340c10f191461026a57806342966c681461027d5780635c19a95c14610292576101cf565b806320606b70116101ad57806320606b701461022757806323b872dd1461022f578063313ce567146102425780633950935114610257576101cf565b806306fdde03146101d4578063095ea7b3146101f257806318160ddd14610212575b600080fd5b6101dc61040a565b6040516101e99190611b14565b60405180910390f35b61020561020036600461192e565b6104a0565b6040516101e99190611a9a565b61021a6104be565b6040516101e99190611aa5565b61021a6104c4565b61020561023d3660046118ee565b6104e8565b61024a61056f565b6040516101e99190611fa6565b61020561026536600461192e565b610578565b61020561027836600461192e565b6105c6565b61029061028b366004611a22565b61062d565b005b6102906102a036600461189a565b610670565b6102b86102b336600461189a565b61067a565b6040516101e99190611f7f565b61021a6102d336600461189a565b610692565b6102906106ad565b61021a6102ee36600461192e565b61072c565b61029061030136600461192e565b610915565b61021a61031436600461189a565b610949565b61032161095b565b6040516101e99190611a6d565b6101dc61096a565b61020561034436600461192e565b6109cb565b61020561035736600461192e565b610a33565b61020561036a36600461189a565b610a47565b61021a61037d36600461189a565b610a5b565b610290610390366004611959565b610abf565b6102906103a3366004611a0e565b610c93565b61021a6103b63660046118b6565b610e98565b61021a610ec3565b6103d66103d13660046119b9565b610ee7565b6040516101e9929190611f90565b6102906103f236600461189a565b610f14565b61029061040536600461189a565b610fcb565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104965780601f1061046b57610100808354040283529160200191610496565b820191906000526020600020905b81548152906001019060200180831161047957829003601f168201915b5050505050905090565b60006104b46104ad611022565b8484611026565b5060015b92915050565b60025490565b7f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86681565b60006104f58484846110da565b61056584610501611022565b6105608560405180606001604052806028815260200161204c602891396001600160a01b038a1660009081526001602052604081209061053f611022565b6001600160a01b031681526020810191909152604001600020549190611117565b611026565b5060019392505050565b60055460ff1690565b60006104b4610585611022565b846105608560016000610596611022565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611143565b60006105d361036a611022565b6105f85760405162461bcd60e51b81526004016105ef90611e23565b60405180910390fd5b692c781f708c509f40000061061561060e6104be565b8490611143565b1115610623575060006104b8565b6104b48383611168565b61063681611197565b61066d60066000610645611022565b6001600160a01b039081168252602082019290925260400160009081205490911690836111a8565b50565b61066d33826112e5565b60086020526000908152604090205463ffffffff1681565b6001600160a01b031660009081526020819052604090205490565b6106b5611022565b600a546001600160a01b039081169116146106e25760405162461bcd60e51b81526004016105ef90611cb6565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b600043821061074d5760405162461bcd60e51b81526004016105ef90611b67565b6001600160a01b03831660009081526008602052604090205463ffffffff168061077b5760009150506104b8565b6001600160a01b038416600090815260076020908152604080832063ffffffff6000198601811685529252909120541683106107ea576001600160a01b03841660009081526007602090815260408083206000199490940163ffffffff168352929052206001015490506104b8565b6001600160a01b038416600090815260076020908152604080832083805290915290205463ffffffff168310156108255760009150506104b8565b600060001982015b8163ffffffff168163ffffffff1611156108de57600282820363ffffffff16048103610857611883565b506001600160a01b038716600090815260076020908152604080832063ffffffff8086168552908352928190208151808301909252805490931680825260019093015491810191909152908714156108b9576020015194506104b89350505050565b805163ffffffff168711156108d0578193506108d7565b6001820392505b505061082d565b506001600160a01b038516600090815260076020908152604080832063ffffffff9094168352929052206001015491505092915050565b61091f8282611397565b6001600160a01b03808316600090815260066020526040812054610945921690836111a8565b5050565b60096020526000908152604090205481565b600a546001600160a01b031690565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104965780601f1061046b57610100808354040283529160200191610496565b60006104b46109d8611022565b84610560856040518060600160405280602581526020016120986025913960016000610a02611022565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611117565b60006104b4610a40611022565b84846110da565b600b546001600160a01b0391821691161490565b6001600160a01b03811660009081526008602052604081205463ffffffff1680610a86576000610ab8565b6001600160a01b038316600090815260076020908152604080832063ffffffff60001986011684529091529020600101545b9392505050565b60007f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a866610aea61040a565b80519060200120610af96113e7565b30604051602001610b0d9493929190611ad2565b60405160208183030381529060405280519060200120905060007fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf888888604051602001610b5e9493929190611aae565b60405160208183030381529060405280519060200120905060008282604051602001610b8b929190611a52565b604051602081830303815290604052805190602001209050600060018288888860405160008152602001604052604051610bc89493929190611af6565b6020604051602081039080840390855afa158015610bea573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116610c1d5760405162461bcd60e51b81526004016105ef90611e5a565b6001600160a01b03811660009081526009602052604090208054600181019091558914610c5c5760405162461bcd60e51b81526004016105ef90611ea6565b87421115610c7c5760405162461bcd60e51b81526004016105ef90611f25565b610c86818b6112e5565b505050505b505050505050565b610c9b611022565b600a546001600160a01b03908116911614610cc85760405162461bcd60e51b81526004016105ef90611cb6565b6001600160a01b038216610cee5760405162461bcd60e51b81526004016105ef90611da8565b6001600160a01b038316610d57574760008215610d1457610d0f82846113eb565b610d16565b815b6040519091506001600160a01b0385169082156108fc029083906000818181858888f19350505050158015610d4f573d6000803e3d6000fd5b505050610e93565b6040516370a0823160e01b81526000906001600160a01b038516906370a0823190610d86903090600401611a6d565b60206040518083038186803b158015610d9e57600080fd5b505afa158015610db2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dd69190611a3a565b905060008215610def57610dea82846113eb565b610df1565b815b905060008111610e135760405162461bcd60e51b81526004016105ef90611d71565b60405163a9059cbb60e01b81526001600160a01b0386169063a9059cbb90610e419087908590600401611a81565b602060405180830381600087803b158015610e5b57600080fd5b505af1158015610e6f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c8b91906119ee565b505050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b7fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf81565b60076020908152600092835260408084209091529082529020805460019091015463ffffffff9091169082565b610f1c611022565b600a546001600160a01b03908116911614610f495760405162461bcd60e51b81526004016105ef90611cb6565b6001600160a01b038116610f6f5760405162461bcd60e51b81526004016105ef90611bf7565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b610fd3611022565b600a546001600160a01b039081169116146110005760405162461bcd60e51b81526004016105ef90611cb6565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b3390565b6001600160a01b03831661104c5760405162461bcd60e51b81526004016105ef90611ddf565b6001600160a01b0382166110725760405162461bcd60e51b81526004016105ef90611c3d565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906110cd908590611aa5565b60405180910390a3505050565b6110e5838383611401565b6001600160a01b03808416600090815260066020526040808220548584168352912054610e93929182169116836111a8565b6000818484111561113b5760405162461bcd60e51b81526004016105ef9190611b14565b505050900390565b600082820183811015610ab85760405162461bcd60e51b81526004016105ef90611c7f565b6111728282611516565b6001600160a01b038083166000908152600660205260408120546109459216836111a8565b61066d6111a2611022565b826115d6565b816001600160a01b0316836001600160a01b0316141580156111ca5750600081115b15610e93576001600160a01b0383161561125c576001600160a01b03831660009081526008602052604081205463ffffffff16908161120a57600061123c565b6001600160a01b038516600090815260076020908152604080832063ffffffff60001987011684529091529020600101545b9050600061124a82856116ac565b9050611258868484846116ee565b5050505b6001600160a01b03821615610e93576001600160a01b03821660009081526008602052604081205463ffffffff1690816112975760006112c9565b6001600160a01b038416600090815260076020908152604080832063ffffffff60001987011684529091529020600101545b905060006112d78285611143565b9050610c8b858484846116ee565b6001600160a01b038083166000908152600660205260408120549091169061130c84610692565b6001600160a01b03858116600090815260066020526040902080546001600160a01b03191691861691909117905590506113478284836111a8565b826001600160a01b0316826001600160a01b0316856001600160a01b03167f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f60405160405180910390a450505050565b60006113c982604051806060016040528060248152602001612074602491396113c2866103b6611022565b9190611117565b90506113dd836113d7611022565b83611026565b610e9383836115d6565b4690565b60008183106113fa5781610ab8565b5090919050565b6001600160a01b0383166114275760405162461bcd60e51b81526004016105ef90611d2c565b6001600160a01b03821661144d5760405162461bcd60e51b81526004016105ef90611bb4565b611458838383610e93565b61149581604051806060016040528060268152602001611fec602691396001600160a01b0386166000908152602081905260409020549190611117565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546114c49082611143565b6001600160a01b0380841660008181526020819052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906110cd908590611aa5565b6001600160a01b03821661153c5760405162461bcd60e51b81526004016105ef90611eee565b61154860008383610e93565b6002546115559082611143565b6002556001600160a01b03821660009081526020819052604090205461157b9082611143565b6001600160a01b0383166000818152602081905260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906115ca908590611aa5565b60405180910390a35050565b6001600160a01b0382166115fc5760405162461bcd60e51b81526004016105ef90611ceb565b61160882600083610e93565b61164581604051806060016040528060228152602001611fca602291396001600160a01b0385166000908152602081905260409020549190611117565b6001600160a01b03831660009081526020819052604090205560025461166b90826116ac565b6002556040516000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906115ca908590611aa5565b6000610ab883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611117565b6000611712436040518060600160405280603a8152602001612012603a9139611853565b905060008463ffffffff1611801561175b57506001600160a01b038516600090815260076020908152604080832063ffffffff6000198901811685529252909120548282169116145b15611798576001600160a01b038516600090815260076020908152604080832063ffffffff60001989011684529091529020600101829055611809565b60408051808201825263ffffffff808416825260208083018681526001600160a01b038a166000818152600784528681208b8616825284528681209551865490861663ffffffff19918216178755925160019687015590815260089092529390208054928801909116919092161790555b846001600160a01b03167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a7248484604051611844929190611f71565b60405180910390a25050505050565b600081640100000000841061187b5760405162461bcd60e51b81526004016105ef9190611b14565b509192915050565b604080518082019091526000808252602082015290565b6000602082840312156118ab578081fd5b8135610ab881611fb4565b600080604083850312156118c8578081fd5b82356118d381611fb4565b915060208301356118e381611fb4565b809150509250929050565b600080600060608486031215611902578081fd5b833561190d81611fb4565b9250602084013561191d81611fb4565b929592945050506040919091013590565b60008060408385031215611940578182fd5b823561194b81611fb4565b946020939093013593505050565b60008060008060008060c08789031215611971578182fd5b863561197c81611fb4565b95506020870135945060408701359350606087013560ff8116811461199f578283fd5b9598949750929560808101359460a0909101359350915050565b600080604083850312156119cb578182fd5b82356119d681611fb4565b9150602083013563ffffffff811681146118e3578182fd5b6000602082840312156119ff578081fd5b81518015158114610ab8578182fd5b600080600060608486031215611902578283fd5b600060208284031215611a33578081fd5b5035919050565b600060208284031215611a4b578081fd5b5051919050565b61190160f01b81526002810192909252602282015260420190565b6001600160a01b0391909116815260200190565b6001600160a01b03929092168252602082015260400190565b901515815260200190565b90815260200190565b9384526001600160a01b039290921660208401526040830152606082015260800190565b938452602084019290925260408301526001600160a01b0316606082015260800190565b93845260ff9290921660208401526040830152606082015260800190565b6000602080835283518082850152825b81811015611b4057858101830151858201604001528201611b24565b81811115611b515783604083870101525b50601f01601f1916929092016040019392505050565b6020808252602d908201527f476f7665726e616e63653a3a6765745072696f72566f7465733a206e6f74207960408201526c195d0819195d195c9b5a5b9959609a1b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526018908201527f747279696e6720746f2073656e6420302062616c616e63650000000000000000604082015260600190565b6020808252601c908201527f63616e206e6f742073656e6420746f207a65726f206164647265737300000000604082015260600190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b6020808252601f908201527f4572726f723a2063616c6c6572206973206e6f7420746865206d696e74657200604082015260600190565b6020808252602c908201527f476f7665726e616e63653a3a64656c656761746542795369673a20696e76616c60408201526b6964207369676e617475726560a01b606082015260800190565b60208082526028908201527f476f7665726e616e63653a3a64656c656761746542795369673a20696e76616c6040820152676964206e6f6e636560c01b606082015260800190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b6020808252602c908201527f476f7665726e616e63653a3a64656c656761746542795369673a207369676e6160408201526b1d1d5c9948195e1c1a5c995960a21b606082015260800190565b918252602082015260400190565b63ffffffff91909116815260200190565b63ffffffff929092168252602082015260400190565b60ff91909116815260200190565b6001600160a01b038116811461066d57600080fdfe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365476f7665726e616e63653a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d6265722065786365656473203332206269747345524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220fb95817f45253c4a316962c31647b3a1c25052db0986185e1cc49690502bae5464736f6c634300060c0033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101cf5760003560e01c806379cc679011610104578063b4b5ea57116100a2578063e7a324dc11610071578063e7a324dc146103bb578063f1127ed8146103c3578063f2fde38b146103e4578063fca3b5aa146103f7576101cf565b8063b4b5ea571461036f578063c3cda52014610382578063cea9d26f14610395578063dd62ed3e146103a8576101cf565b806395d89b41116100de57806395d89b411461032e578063a457c2d714610336578063a9059cbb14610349578063aa271e1a1461035c576101cf565b806379cc6790146102f35780637ecebe00146103065780638da5cb5b14610319576101cf565b806340c10f19116101715780636fcfff451161014b5780636fcfff45146102a557806370a08231146102c5578063715018a6146102d8578063782d6fe1146102e0576101cf565b806340c10f191461026a57806342966c681461027d5780635c19a95c14610292576101cf565b806320606b70116101ad57806320606b701461022757806323b872dd1461022f578063313ce567146102425780633950935114610257576101cf565b806306fdde03146101d4578063095ea7b3146101f257806318160ddd14610212575b600080fd5b6101dc61040a565b6040516101e99190611b14565b60405180910390f35b61020561020036600461192e565b6104a0565b6040516101e99190611a9a565b61021a6104be565b6040516101e99190611aa5565b61021a6104c4565b61020561023d3660046118ee565b6104e8565b61024a61056f565b6040516101e99190611fa6565b61020561026536600461192e565b610578565b61020561027836600461192e565b6105c6565b61029061028b366004611a22565b61062d565b005b6102906102a036600461189a565b610670565b6102b86102b336600461189a565b61067a565b6040516101e99190611f7f565b61021a6102d336600461189a565b610692565b6102906106ad565b61021a6102ee36600461192e565b61072c565b61029061030136600461192e565b610915565b61021a61031436600461189a565b610949565b61032161095b565b6040516101e99190611a6d565b6101dc61096a565b61020561034436600461192e565b6109cb565b61020561035736600461192e565b610a33565b61020561036a36600461189a565b610a47565b61021a61037d36600461189a565b610a5b565b610290610390366004611959565b610abf565b6102906103a3366004611a0e565b610c93565b61021a6103b63660046118b6565b610e98565b61021a610ec3565b6103d66103d13660046119b9565b610ee7565b6040516101e9929190611f90565b6102906103f236600461189a565b610f14565b61029061040536600461189a565b610fcb565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104965780601f1061046b57610100808354040283529160200191610496565b820191906000526020600020905b81548152906001019060200180831161047957829003601f168201915b5050505050905090565b60006104b46104ad611022565b8484611026565b5060015b92915050565b60025490565b7f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86681565b60006104f58484846110da565b61056584610501611022565b6105608560405180606001604052806028815260200161204c602891396001600160a01b038a1660009081526001602052604081209061053f611022565b6001600160a01b031681526020810191909152604001600020549190611117565b611026565b5060019392505050565b60055460ff1690565b60006104b4610585611022565b846105608560016000610596611022565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611143565b60006105d361036a611022565b6105f85760405162461bcd60e51b81526004016105ef90611e23565b60405180910390fd5b692c781f708c509f40000061061561060e6104be565b8490611143565b1115610623575060006104b8565b6104b48383611168565b61063681611197565b61066d60066000610645611022565b6001600160a01b039081168252602082019290925260400160009081205490911690836111a8565b50565b61066d33826112e5565b60086020526000908152604090205463ffffffff1681565b6001600160a01b031660009081526020819052604090205490565b6106b5611022565b600a546001600160a01b039081169116146106e25760405162461bcd60e51b81526004016105ef90611cb6565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b600043821061074d5760405162461bcd60e51b81526004016105ef90611b67565b6001600160a01b03831660009081526008602052604090205463ffffffff168061077b5760009150506104b8565b6001600160a01b038416600090815260076020908152604080832063ffffffff6000198601811685529252909120541683106107ea576001600160a01b03841660009081526007602090815260408083206000199490940163ffffffff168352929052206001015490506104b8565b6001600160a01b038416600090815260076020908152604080832083805290915290205463ffffffff168310156108255760009150506104b8565b600060001982015b8163ffffffff168163ffffffff1611156108de57600282820363ffffffff16048103610857611883565b506001600160a01b038716600090815260076020908152604080832063ffffffff8086168552908352928190208151808301909252805490931680825260019093015491810191909152908714156108b9576020015194506104b89350505050565b805163ffffffff168711156108d0578193506108d7565b6001820392505b505061082d565b506001600160a01b038516600090815260076020908152604080832063ffffffff9094168352929052206001015491505092915050565b61091f8282611397565b6001600160a01b03808316600090815260066020526040812054610945921690836111a8565b5050565b60096020526000908152604090205481565b600a546001600160a01b031690565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104965780601f1061046b57610100808354040283529160200191610496565b60006104b46109d8611022565b84610560856040518060600160405280602581526020016120986025913960016000610a02611022565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611117565b60006104b4610a40611022565b84846110da565b600b546001600160a01b0391821691161490565b6001600160a01b03811660009081526008602052604081205463ffffffff1680610a86576000610ab8565b6001600160a01b038316600090815260076020908152604080832063ffffffff60001986011684529091529020600101545b9392505050565b60007f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a866610aea61040a565b80519060200120610af96113e7565b30604051602001610b0d9493929190611ad2565b60405160208183030381529060405280519060200120905060007fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf888888604051602001610b5e9493929190611aae565b60405160208183030381529060405280519060200120905060008282604051602001610b8b929190611a52565b604051602081830303815290604052805190602001209050600060018288888860405160008152602001604052604051610bc89493929190611af6565b6020604051602081039080840390855afa158015610bea573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116610c1d5760405162461bcd60e51b81526004016105ef90611e5a565b6001600160a01b03811660009081526009602052604090208054600181019091558914610c5c5760405162461bcd60e51b81526004016105ef90611ea6565b87421115610c7c5760405162461bcd60e51b81526004016105ef90611f25565b610c86818b6112e5565b505050505b505050505050565b610c9b611022565b600a546001600160a01b03908116911614610cc85760405162461bcd60e51b81526004016105ef90611cb6565b6001600160a01b038216610cee5760405162461bcd60e51b81526004016105ef90611da8565b6001600160a01b038316610d57574760008215610d1457610d0f82846113eb565b610d16565b815b6040519091506001600160a01b0385169082156108fc029083906000818181858888f19350505050158015610d4f573d6000803e3d6000fd5b505050610e93565b6040516370a0823160e01b81526000906001600160a01b038516906370a0823190610d86903090600401611a6d565b60206040518083038186803b158015610d9e57600080fd5b505afa158015610db2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dd69190611a3a565b905060008215610def57610dea82846113eb565b610df1565b815b905060008111610e135760405162461bcd60e51b81526004016105ef90611d71565b60405163a9059cbb60e01b81526001600160a01b0386169063a9059cbb90610e419087908590600401611a81565b602060405180830381600087803b158015610e5b57600080fd5b505af1158015610e6f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c8b91906119ee565b505050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b7fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf81565b60076020908152600092835260408084209091529082529020805460019091015463ffffffff9091169082565b610f1c611022565b600a546001600160a01b03908116911614610f495760405162461bcd60e51b81526004016105ef90611cb6565b6001600160a01b038116610f6f5760405162461bcd60e51b81526004016105ef90611bf7565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b610fd3611022565b600a546001600160a01b039081169116146110005760405162461bcd60e51b81526004016105ef90611cb6565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b3390565b6001600160a01b03831661104c5760405162461bcd60e51b81526004016105ef90611ddf565b6001600160a01b0382166110725760405162461bcd60e51b81526004016105ef90611c3d565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906110cd908590611aa5565b60405180910390a3505050565b6110e5838383611401565b6001600160a01b03808416600090815260066020526040808220548584168352912054610e93929182169116836111a8565b6000818484111561113b5760405162461bcd60e51b81526004016105ef9190611b14565b505050900390565b600082820183811015610ab85760405162461bcd60e51b81526004016105ef90611c7f565b6111728282611516565b6001600160a01b038083166000908152600660205260408120546109459216836111a8565b61066d6111a2611022565b826115d6565b816001600160a01b0316836001600160a01b0316141580156111ca5750600081115b15610e93576001600160a01b0383161561125c576001600160a01b03831660009081526008602052604081205463ffffffff16908161120a57600061123c565b6001600160a01b038516600090815260076020908152604080832063ffffffff60001987011684529091529020600101545b9050600061124a82856116ac565b9050611258868484846116ee565b5050505b6001600160a01b03821615610e93576001600160a01b03821660009081526008602052604081205463ffffffff1690816112975760006112c9565b6001600160a01b038416600090815260076020908152604080832063ffffffff60001987011684529091529020600101545b905060006112d78285611143565b9050610c8b858484846116ee565b6001600160a01b038083166000908152600660205260408120549091169061130c84610692565b6001600160a01b03858116600090815260066020526040902080546001600160a01b03191691861691909117905590506113478284836111a8565b826001600160a01b0316826001600160a01b0316856001600160a01b03167f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f60405160405180910390a450505050565b60006113c982604051806060016040528060248152602001612074602491396113c2866103b6611022565b9190611117565b90506113dd836113d7611022565b83611026565b610e9383836115d6565b4690565b60008183106113fa5781610ab8565b5090919050565b6001600160a01b0383166114275760405162461bcd60e51b81526004016105ef90611d2c565b6001600160a01b03821661144d5760405162461bcd60e51b81526004016105ef90611bb4565b611458838383610e93565b61149581604051806060016040528060268152602001611fec602691396001600160a01b0386166000908152602081905260409020549190611117565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546114c49082611143565b6001600160a01b0380841660008181526020819052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906110cd908590611aa5565b6001600160a01b03821661153c5760405162461bcd60e51b81526004016105ef90611eee565b61154860008383610e93565b6002546115559082611143565b6002556001600160a01b03821660009081526020819052604090205461157b9082611143565b6001600160a01b0383166000818152602081905260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906115ca908590611aa5565b60405180910390a35050565b6001600160a01b0382166115fc5760405162461bcd60e51b81526004016105ef90611ceb565b61160882600083610e93565b61164581604051806060016040528060228152602001611fca602291396001600160a01b0385166000908152602081905260409020549190611117565b6001600160a01b03831660009081526020819052604090205560025461166b90826116ac565b6002556040516000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906115ca908590611aa5565b6000610ab883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611117565b6000611712436040518060600160405280603a8152602001612012603a9139611853565b905060008463ffffffff1611801561175b57506001600160a01b038516600090815260076020908152604080832063ffffffff6000198901811685529252909120548282169116145b15611798576001600160a01b038516600090815260076020908152604080832063ffffffff60001989011684529091529020600101829055611809565b60408051808201825263ffffffff808416825260208083018681526001600160a01b038a166000818152600784528681208b8616825284528681209551865490861663ffffffff19918216178755925160019687015590815260089092529390208054928801909116919092161790555b846001600160a01b03167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a7248484604051611844929190611f71565b60405180910390a25050505050565b600081640100000000841061187b5760405162461bcd60e51b81526004016105ef9190611b14565b509192915050565b604080518082019091526000808252602082015290565b6000602082840312156118ab578081fd5b8135610ab881611fb4565b600080604083850312156118c8578081fd5b82356118d381611fb4565b915060208301356118e381611fb4565b809150509250929050565b600080600060608486031215611902578081fd5b833561190d81611fb4565b9250602084013561191d81611fb4565b929592945050506040919091013590565b60008060408385031215611940578182fd5b823561194b81611fb4565b946020939093013593505050565b60008060008060008060c08789031215611971578182fd5b863561197c81611fb4565b95506020870135945060408701359350606087013560ff8116811461199f578283fd5b9598949750929560808101359460a0909101359350915050565b600080604083850312156119cb578182fd5b82356119d681611fb4565b9150602083013563ffffffff811681146118e3578182fd5b6000602082840312156119ff578081fd5b81518015158114610ab8578182fd5b600080600060608486031215611902578283fd5b600060208284031215611a33578081fd5b5035919050565b600060208284031215611a4b578081fd5b5051919050565b61190160f01b81526002810192909252602282015260420190565b6001600160a01b0391909116815260200190565b6001600160a01b03929092168252602082015260400190565b901515815260200190565b90815260200190565b9384526001600160a01b039290921660208401526040830152606082015260800190565b938452602084019290925260408301526001600160a01b0316606082015260800190565b93845260ff9290921660208401526040830152606082015260800190565b6000602080835283518082850152825b81811015611b4057858101830151858201604001528201611b24565b81811115611b515783604083870101525b50601f01601f1916929092016040019392505050565b6020808252602d908201527f476f7665726e616e63653a3a6765745072696f72566f7465733a206e6f74207960408201526c195d0819195d195c9b5a5b9959609a1b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526018908201527f747279696e6720746f2073656e6420302062616c616e63650000000000000000604082015260600190565b6020808252601c908201527f63616e206e6f742073656e6420746f207a65726f206164647265737300000000604082015260600190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b6020808252601f908201527f4572726f723a2063616c6c6572206973206e6f7420746865206d696e74657200604082015260600190565b6020808252602c908201527f476f7665726e616e63653a3a64656c656761746542795369673a20696e76616c60408201526b6964207369676e617475726560a01b606082015260800190565b60208082526028908201527f476f7665726e616e63653a3a64656c656761746542795369673a20696e76616c6040820152676964206e6f6e636560c01b606082015260800190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b6020808252602c908201527f476f7665726e616e63653a3a64656c656761746542795369673a207369676e6160408201526b1d1d5c9948195e1c1a5c995960a21b606082015260800190565b918252602082015260400190565b63ffffffff91909116815260200190565b63ffffffff929092168252602082015260400190565b60ff91909116815260200190565b6001600160a01b038116811461066d57600080fdfe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365476f7665726e616e63653a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d6265722065786365656473203332206269747345524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220fb95817f45253c4a316962c31647b3a1c25052db0986185e1cc49690502bae5464736f6c634300060c0033
Deployed Bytecode Sourcemap
39211:1879:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19890:83;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21996:169;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;20965:100::-;;;:::i;:::-;;;;;;;:::i;30664:122::-;;;:::i;22639:321::-;;;;;;:::i;:::-;;:::i;20817:83::-;;;:::i;:::-;;;;;;;:::i;23369:218::-;;;;;;:::i;:::-;;:::i;39538:231::-;;;;;;:::i;:::-;;:::i;31670:202::-;;;;;;:::i;:::-;;:::i;:::-;;32264:104;;;;;;:::i;:::-;;:::i;30542:49::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;21128:119::-;;;;;;:::i;:::-;;:::i;2714:148::-;;;:::i;34885:1259::-;;;;;;:::i;:::-;;:::i;31880:235::-;;;;;;:::i;:::-;;:::i;31078:39::-;;;;;;:::i;:::-;;:::i;2072:79::-;;;:::i;:::-;;;;;;;:::i;20092:87::-;;;:::i;24090:269::-;;;;;;:::i;:::-;;:::i;21460:175::-;;;;;;:::i;:::-;;:::i;39874:106::-;;;;;;:::i;:::-;;:::i;34199:255::-;;;;;;:::i;:::-;;:::i;32802:1196::-;;;;;;:::i;:::-;;:::i;40181:786::-;;;;;;:::i;:::-;;:::i;21698:151::-;;;;;;:::i;:::-;;:::i;30880:117::-;;;:::i;30403:70::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;3017:244::-;;;;;;:::i;:::-;;:::i;39777:87::-;;;;;;:::i;:::-;;:::i;19890:83::-;19960:5;19953:12;;;;;;;;-1:-1:-1;;19953:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19927:13;;19953:12;;19960:5;;19953:12;;19960:5;19953:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19890:83;:::o;21996:169::-;22079:4;22096:39;22105:12;:10;:12::i;:::-;22119:7;22128:6;22096:8;:39::i;:::-;-1:-1:-1;22153:4:0;21996:169;;;;;:::o;20965:100::-;21045:12;;20965:100;:::o;30664:122::-;30706:80;30664:122;:::o;22639:321::-;22745:4;22762:36;22772:6;22780:9;22791:6;22762:9;:36::i;:::-;22809:121;22818:6;22826:12;:10;:12::i;:::-;22840:89;22878:6;22840:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22840:19:0;;;;;;:11;:19;;;;;;22860:12;:10;:12::i;:::-;-1:-1:-1;;;;;22840:33:0;;;;;;;;;;;;-1:-1:-1;22840:33:0;;;:89;:37;:89::i;:::-;22809:8;:121::i;:::-;-1:-1:-1;22948:4:0;22639:321;;;;;:::o;20817:83::-;20883:9;;;;20817:83;:::o;23369:218::-;23457:4;23474:83;23483:12;:10;:12::i;:::-;23497:7;23506:50;23545:10;23506:11;:25;23518:12;:10;:12::i;:::-;-1:-1:-1;;;;;23506:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;23506:25:0;;;:34;;;;;;;;;;;:38;:50::i;39538:231::-;39609:4;40031:22;40040:12;:10;:12::i;40031:22::-;40023:66;;;;-1:-1:-1;;;40023:66:0;;;;;;;:::i;:::-;;;;;;;;;39316:16:::1;39629:26;39641:13;:11;:13::i;:::-;39629:7:::0;;:11:::1;:26::i;:::-;:38;39626:82;;;-1:-1:-1::0;39691:5:0::1;39684:12;;39626:82;39720:19;39726:3;39731:7;39720:5;:19::i;31670:202::-:0;31735:18;31746:6;31735:10;:18::i;:::-;31804:60;31819:10;:24;31830:12;:10;:12::i;:::-;-1:-1:-1;;;;;31819:24:0;;;;;;;;;;;;;;-1:-1:-1;31819:24:0;;;;;;;;31857:6;31804:14;:60::i;:::-;31670:202;:::o;32264:104::-;32328:32;32338:10;32350:9;32328;:32::i;30542:49::-;;;;;;;;;;;;;;;:::o;21128:119::-;-1:-1:-1;;;;;21221:18:0;21194:7;21221:18;;;;;;;;;;;;21128:119::o;2714:148::-;2294:12;:10;:12::i;:::-;2284:6;;-1:-1:-1;;;;;2284:6:0;;;:22;;;2276:67;;;;-1:-1:-1;;;2276:67:0;;;;;;;:::i;:::-;2805:6:::1;::::0;2784:40:::1;::::0;2821:1:::1;::::0;-1:-1:-1;;;;;2805:6:0::1;::::0;2784:40:::1;::::0;2821:1;;2784:40:::1;2835:6;:19:::0;;-1:-1:-1;;;;;;2835:19:0::1;::::0;;2714:148::o;34885:1259::-;34993:7;35040:12;35026:11;:26;35018:84;;;;-1:-1:-1;;;35018:84:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;35137:23:0;;35115:19;35137:23;;;:14;:23;;;;;;;;35175:17;35171:58;;35216:1;35209:8;;;;;35171:58;-1:-1:-1;;;;;35289:20:0;;;;;;:11;:20;;;;;;;;:38;-1:-1:-1;;35310:16:0;;35289:38;;;;;;;;;:48;;:63;-1:-1:-1;35285:147:0;;-1:-1:-1;;;;;35376:20:0;;;;;;:11;:20;;;;;;;;-1:-1:-1;;35397:16:0;;;;35376:38;;;;;;;;35412:1;35376:44;;;-1:-1:-1;35369:51:0;;35285:147;-1:-1:-1;;;;;35493:20:0;;;;;;:11;:20;;;;;;;;:23;;;;;;;;:33;:23;:33;:47;-1:-1:-1;35489:88:0;;;35564:1;35557:8;;;;;35489:88;35589:12;-1:-1:-1;;35631:16:0;;35658:428;35673:5;35665:13;;:5;:13;;;35658:428;;;35737:1;35720:13;;;35719:19;;;35711:27;;35780:20;;:::i;:::-;-1:-1:-1;;;;;;35803:20:0;;;;;;:11;:20;;;;;;;;:28;;;;;;;;;;;;;35780:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35850:27;;35846:229;;;35905:8;;;;-1:-1:-1;35898:15:0;;-1:-1:-1;;;;35898:15:0;35846:229;35939:12;;:26;;;-1:-1:-1;35935:140:0;;;35994:6;35986:14;;35935:140;;;36058:1;36049:6;:10;36041:18;;35935:140;35658:428;;;;;-1:-1:-1;;;;;;36103:20:0;;;;;;:11;:20;;;;;;;;:27;;;;;;;;;;:33;;;;-1:-1:-1;;34885:1259:0;;;;:::o;31880:235::-;31966:31;31981:7;31990:6;31966:14;:31::i;:::-;-1:-1:-1;;;;;32067:19:0;;;;;;;:10;:19;;;;;;32052:55;;32067:19;;32100:6;32052:14;:55::i;:::-;31880:235;;:::o;31078:39::-;;;;;;;;;;;;;:::o;2072:79::-;2137:6;;-1:-1:-1;;;;;2137:6:0;2072:79;:::o;20092:87::-;20164:7;20157:14;;;;;;;;-1:-1:-1;;20157:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20131:13;;20157:14;;20164:7;;20157:14;;20164:7;20157:14;;;;;;;;;;;;;;;;;;;;;;;;24090:269;24183:4;24200:129;24209:12;:10;:12::i;:::-;24223:7;24232:96;24271:15;24232:96;;;;;;;;;;;;;;;;;:11;:25;24244:12;:10;:12::i;:::-;-1:-1:-1;;;;;24232:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;24232:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;21460:175::-;21546:4;21563:42;21573:12;:10;:12::i;:::-;21587:9;21598:6;21563:9;:42::i;39874:106::-;39954:7;;-1:-1:-1;;;;;39954:18:0;;;:7;;:18;;39874:106::o;34199:255::-;-1:-1:-1;;;;;34338:23:0;;34291:7;34338:23;;;:14;:23;;;;;;;;34379:16;:67;;34445:1;34379:67;;;-1:-1:-1;;;;;34398:20:0;;;;;;:11;:20;;;;;;;;:38;-1:-1:-1;;34419:16:0;;34398:38;;;;;;;;34434:1;34398:44;;34379:67;34372:74;34199:255;-1:-1:-1;;;34199:255:0:o;32802:1196::-;32995:23;30706:80;33124:6;:4;:6::i;:::-;33108:24;;;;;;33151:12;:10;:12::i;:::-;33190:4;33045:165;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;33021:200;;;;;;32995:226;;33234:18;30926:71;33346:9;33374:5;33398:6;33279:140;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;33255:175;;;;;;33234:196;;33443:14;33548:15;33582:10;33484:123;;;;;;;;;:::i;:::-;;;;;;;;;;;;;33460:158;;;;;;33443:175;;33631:17;33651:26;33661:6;33669:1;33672;33675;33651:26;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;33651:26:0;;-1:-1:-1;;33651:26:0;;;-1:-1:-1;;;;;;;33696:23:0;;33688:80;;;;-1:-1:-1;;;33688:80:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;33796:17:0;;;;;;:6;:17;;;;;:19;;;;;;;;33787:28;;33779:81;;;;-1:-1:-1;;;33779:81:0;;;;;;;:::i;:::-;33886:6;33879:3;:13;;33871:70;;;;-1:-1:-1;;;33871:70:0;;;;;;;:::i;:::-;33959:31;33969:9;33980;33959;:31::i;:::-;33952:38;;;;32802:1196;;;;;;;:::o;40181:786::-;2294:12;:10;:12::i;:::-;2284:6;;-1:-1:-1;;;;;2284:6:0;;;:22;;;2276:67;;;;-1:-1:-1;;;2276:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;40329:17:0;::::1;40321:58;;;;-1:-1:-1::0;;;40321:58:0::1;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;40396:19:0;::::1;40392:568;;40481:21;40458:20;40536:13:::0;;40535:60:::1;;40568:27;40572:12;40586:8;40568:3;:27::i;:::-;40535:60;;;40553:12;40535:60;40610:21;::::0;40517:78;;-1:-1:-1;;;;;;40610:12:0;::::1;::::0;:21;::::1;;;::::0;40517:78;;40610:21:::1;::::0;;;40517:78;40610:12;:21;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;40392:568;;;;;40719:31;::::0;-1:-1:-1;;;40719:31:0;;40696:20:::1;::::0;-1:-1:-1;;;;;40719:16:0;::::1;::::0;::::1;::::0;:31:::1;::::0;40744:4:::1;::::0;40719:31:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;40696:54:::0;-1:-1:-1;40765:15:0::1;40783:13:::0;;:58:::1;;40814:27;40818:12;40832:8;40814:3;:27::i;:::-;40783:58;;;40799:12;40783:58;40765:76;;40874:1;40864:7;:11;40856:48;;;;-1:-1:-1::0;;;40856:48:0::1;;;;;;;:::i;:::-;40919:29;::::0;-1:-1:-1;;;40919:29:0;;-1:-1:-1;;;;;40919:15:0;::::1;::::0;::::1;::::0;:29:::1;::::0;40935:3;;40940:7;;40919:29:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;40392:568::-;40181:786:::0;;;:::o;21698:151::-;-1:-1:-1;;;;;21814:18:0;;;21787:7;21814:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;21698:151::o;30880:117::-;30926:71;30880:117;:::o;30403:70::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;3017:244::-;2294:12;:10;:12::i;:::-;2284:6;;-1:-1:-1;;;;;2284:6:0;;;:22;;;2276:67;;;;-1:-1:-1;;;2276:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3106:22:0;::::1;3098:73;;;;-1:-1:-1::0;;;3098:73:0::1;;;;;;;:::i;:::-;3208:6;::::0;3187:38:::1;::::0;-1:-1:-1;;;;;3187:38:0;;::::1;::::0;3208:6:::1;::::0;3187:38:::1;::::0;3208:6:::1;::::0;3187:38:::1;3236:6;:17:::0;;-1:-1:-1;;;;;;3236:17:0::1;-1:-1:-1::0;;;;;3236:17:0;;;::::1;::::0;;;::::1;::::0;;3017:244::o;39777:87::-;2294:12;:10;:12::i;:::-;2284:6;;-1:-1:-1;;;;;2284:6:0;;;:22;;;2276:67;;;;-1:-1:-1;;;2276:67:0;;;;;;;:::i;:::-;39841:7:::1;:15:::0;;-1:-1:-1;;;;;;39841:15:0::1;-1:-1:-1::0;;;;;39841:15:0;;;::::1;::::0;;;::::1;::::0;;39777:87::o;624:106::-;712:10;624:106;:::o;27237:346::-;-1:-1:-1;;;;;27339:19:0;;27331:68;;;;-1:-1:-1;;;27331:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;27418:21:0;;27410:68;;;;-1:-1:-1;;;27410:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;27491:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;27543:32;;;;;27521:6;;27543:32;:::i;:::-;;;;;;;;27237:346;;;:::o;31396:233::-;31503:42;31519:6;31527:9;31538:6;31503:15;:42::i;:::-;-1:-1:-1;;;;;31571:18:0;;;;;;;:10;:18;;;;;;;31591:21;;;;;;;;31556:65;;31571:18;;;;31591:21;31614:6;31556:14;:65::i;7899:192::-;7985:7;8021:12;8013:6;;;;8005:29;;;;-1:-1:-1;;;8005:29:0;;;;;;;;:::i;:::-;-1:-1:-1;;;8057:5:0;;;7899:192::o;6996:181::-;7054:7;7086:5;;;7110:6;;;;7102:46;;;;-1:-1:-1;;;7102:46:0;;;;;;;:::i;31159:229::-;31244:28;31256:7;31265:6;31244:11;:28::i;:::-;-1:-1:-1;;;;;31352:19:0;;;31348:1;31352:19;;;:10;:19;;;;;;31325:55;;31352:19;31373:6;31325:14;:55::i;29187:91::-;29243:27;29249:12;:10;:12::i;:::-;29263:6;29243:5;:27::i;36601:947::-;36707:6;-1:-1:-1;;;;;36697:16:0;:6;-1:-1:-1;;;;;36697:16:0;;;:30;;;;;36726:1;36717:6;:10;36697:30;36693:848;;;-1:-1:-1;;;;;36748:20:0;;;36744:385;;-1:-1:-1;;;;;36856:22:0;;36837:16;36856:22;;;:14;:22;;;;;;;;;36917:13;:60;;36976:1;36917:60;;;-1:-1:-1;;;;;36933:19:0;;;;;;:11;:19;;;;;;;;:34;-1:-1:-1;;36953:13:0;;36933:34;;;;;;;;36965:1;36933:40;;36917:60;36897:80;-1:-1:-1;36996:17:0;37016:21;36897:80;37030:6;37016:13;:21::i;:::-;36996:41;;37056:57;37073:6;37081:9;37092;37103;37056:16;:57::i;:::-;36744:385;;;;-1:-1:-1;;;;;37149:20:0;;;37145:385;;-1:-1:-1;;;;;37257:22:0;;37238:16;37257:22;;;:14;:22;;;;;;;;;37318:13;:60;;37377:1;37318:60;;;-1:-1:-1;;;;;37334:19:0;;;;;;:11;:19;;;;;;;;:34;-1:-1:-1;;37354:13:0;;37334:34;;;;;;;;37366:1;37334:40;;37318:60;37298:80;-1:-1:-1;37397:17:0;37417:21;37298:80;37431:6;37417:13;:21::i;:::-;37397:41;;37457:57;37474:6;37482:9;37493;37504;37457:16;:57::i;36152:441::-;-1:-1:-1;;;;;36269:21:0;;;36243:23;36269:21;;;:10;:21;;;;;;;;;;36328:20;36280:9;36328;:20::i;:::-;-1:-1:-1;;;;;36407:21:0;;;;;;;:10;:21;;;;;:33;;-1:-1:-1;;;;;;36407:33:0;;;;;;;;;;36301:47;-1:-1:-1;36453:60:0;36468:15;36407:33;36301:47;36453:14;:60::i;:::-;36575:9;-1:-1:-1;;;;;36531:54:0;36558:15;-1:-1:-1;;;;;36531:54:0;36547:9;-1:-1:-1;;;;;36531:54:0;;;;;;;;;;;36152:441;;;;:::o;29597:295::-;29674:26;29703:84;29740:6;29703:84;;;;;;;;;;;;;;;;;:32;29713:7;29722:12;:10;:12::i;29703:32::-;:36;:84;:36;:84::i;:::-;29674:113;;29800:51;29809:7;29818:12;:10;:12::i;:::-;29832:18;29800:8;:51::i;:::-;29862:22;29868:7;29877:6;29862:5;:22::i;38443:163::-;38553:9;38443:163;:::o;40979:106::-;41037:7;41068:1;41064;:5;:13;;41076:1;41064:13;;;-1:-1:-1;41072:1:0;;41057:20;-1:-1:-1;40979:106:0:o;24849:539::-;-1:-1:-1;;;;;24955:20:0;;24947:70;;;;-1:-1:-1;;;24947:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;25036:23:0;;25028:71;;;;-1:-1:-1;;;25028:71:0;;;;;;;:::i;:::-;25112:47;25133:6;25141:9;25152:6;25112:20;:47::i;:::-;25192:71;25214:6;25192:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;25192:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;25172:17:0;;;:9;:17;;;;;;;;;;;:91;;;;25297:20;;;;;;;:32;;25322:6;25297:24;:32::i;:::-;-1:-1:-1;;;;;25274:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;25345:35;;;;;;;;;;25373:6;;25345:35;:::i;25669:378::-;-1:-1:-1;;;;;25753:21:0;;25745:65;;;;-1:-1:-1;;;25745:65:0;;;;;;;:::i;:::-;25823:49;25852:1;25856:7;25865:6;25823:20;:49::i;:::-;25900:12;;:24;;25917:6;25900:16;:24::i;:::-;25885:12;:39;-1:-1:-1;;;;;25956:18:0;;:9;:18;;;;;;;;;;;:30;;25979:6;25956:22;:30::i;:::-;-1:-1:-1;;;;;25935:18:0;;:9;:18;;;;;;;;;;;:51;;;;26002:37;;25935:18;;:9;26002:37;;;;26032:6;;26002:37;:::i;:::-;;;;;;;;25669:378;;:::o;26379:418::-;-1:-1:-1;;;;;26463:21:0;;26455:67;;;;-1:-1:-1;;;26455:67:0;;;;;;;:::i;:::-;26535:49;26556:7;26573:1;26577:6;26535:20;:49::i;:::-;26618:68;26641:6;26618:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;26618:18:0;;:9;:18;;;;;;;;;;;;:68;:22;:68::i;:::-;-1:-1:-1;;;;;26597:18:0;;:9;:18;;;;;;;;;;:89;26712:12;;:24;;26729:6;26712:16;:24::i;:::-;26697:12;:39;26752:37;;26778:1;;-1:-1:-1;;;;;26752:37:0;;;;;;;26782:6;;26752:37;:::i;7460:136::-;7518:7;7545:43;7549:1;7552;7545:43;;;;;;;;;;;;;;;;;:3;:43::i;37556:710::-;37735:18;37756:82;37763:12;37756:82;;;;;;;;;;;;;;;;;:6;:82::i;:::-;37735:103;;37870:1;37855:12;:16;;;:85;;;;-1:-1:-1;;;;;;37875:22:0;;;;;;:11;:22;;;;;;;;:65;-1:-1:-1;;37898:16:0;;37875:40;;;;;;;;;:50;:65;;;:50;;:65;37855:85;37851:339;;;-1:-1:-1;;;;;37957:22:0;;;;;;:11;:22;;;;;;;;:40;-1:-1:-1;;37980:16:0;;37957:40;;;;;;;;37995:1;37957:46;:57;;;37851:339;;;38086:33;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38047:22:0;;-1:-1:-1;38047:22:0;;;:11;:22;;;;;:36;;;;;;;;;;:72;;;;;;;-1:-1:-1;;38047:72:0;;;;;;;;;;;;;38134:25;;;:14;:25;;;;;;:44;;38162:16;;;38134:44;;;;;;;;;;37851:339;38228:9;-1:-1:-1;;;;;38207:51:0;;38239:8;38249;38207:51;;;;;;;:::i;:::-;;;;;;;;37556:710;;;;;:::o;38274:161::-;38349:6;38387:12;38380:5;38376:9;;38368:32;;;;-1:-1:-1;;;38368:32:0;;;;;;;;:::i;:::-;-1:-1:-1;38425:1:0;;38274:161;-1:-1:-1;;38274:161:0:o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;:::o;1278:241::-;;1382:2;1370:9;1361:7;1357:23;1353:32;1350:2;;;-1:-1;;1388:12;1350:2;85:6;72:20;97:33;124:5;97:33;:::i;1526:366::-;;;1647:2;1635:9;1626:7;1622:23;1618:32;1615:2;;;-1:-1;;1653:12;1615:2;85:6;72:20;97:33;124:5;97:33;:::i;:::-;1705:63;-1:-1;1805:2;1844:22;;72:20;97:33;72:20;97:33;:::i;:::-;1813:63;;;;1609:283;;;;;:::o;1899:491::-;;;;2037:2;2025:9;2016:7;2012:23;2008:32;2005:2;;;-1:-1;;2043:12;2005:2;85:6;72:20;97:33;124:5;97:33;:::i;:::-;2095:63;-1:-1;2195:2;2234:22;;72:20;97:33;72:20;97:33;:::i;:::-;1999:391;;2203:63;;-1:-1;;;2303:2;2342:22;;;;799:20;;1999:391::o;2397:366::-;;;2518:2;2506:9;2497:7;2493:23;2489:32;2486:2;;;-1:-1;;2524:12;2486:2;85:6;72:20;97:33;124:5;97:33;:::i;:::-;2576:63;2676:2;2715:22;;;;799:20;;-1:-1;;;2480:283::o;2770:865::-;;;;;;;2957:3;2945:9;2936:7;2932:23;2928:33;2925:2;;;-1:-1;;2964:12;2925:2;85:6;72:20;97:33;124:5;97:33;:::i;:::-;3016:63;-1:-1;3116:2;3155:22;;799:20;;-1:-1;3224:2;3263:22;;799:20;;-1:-1;3332:2;3369:22;;1210:20;26110:4;26099:16;;27930:33;;27920:2;;-1:-1;;27967:12;27920:2;2919:716;;;;-1:-1;2919:716;;3438:3;3478:22;;497:20;;3547:3;3587:22;;;497:20;;-1:-1;2919:716;-1:-1;;2919:716::o;3642:364::-;;;3762:2;3750:9;3741:7;3737:23;3733:32;3730:2;;;-1:-1;;3768:12;3730:2;85:6;72:20;97:33;124:5;97:33;:::i;:::-;3820:63;-1:-1;3920:2;3958:22;;1076:20;26016:10;26005:22;;27809:34;;27799:2;;-1:-1;;27847:12;4013:257;;4125:2;4113:9;4104:7;4100:23;4096:32;4093:2;;;-1:-1;;4131:12;4093:2;376:6;370:13;27314:5;25520:13;25513:21;27292:5;27289:32;27279:2;;-1:-1;;27325:12;4277:535;;;;4437:2;4425:9;4416:7;4412:23;4408:32;4405:2;;;-1:-1;;4443:12;4819:241;;4923:2;4911:9;4902:7;4898:23;4894:32;4891:2;;;-1:-1;;4929:12;4891:2;-1:-1;799:20;;4885:175;-1:-1;4885:175::o;5067:263::-;;5182:2;5170:9;5161:7;5157:23;5153:32;5150:2;;;-1:-1;;5188:12;5150:2;-1:-1;947:13;;5144:186;-1:-1;5144:186::o;12981:659::-;-1:-1;;;8162:87;;8147:1;8268:11;;5788:37;;;;13492:12;;;5788:37;13603:12;;;13226:414::o;13647:222::-;-1:-1;;;;;25799:54;;;;5557:37;;13774:2;13759:18;;13745:124::o;13876:349::-;-1:-1;;;;;25799:54;;;;5416:58;;14211:2;14196:18;;5788:37;14039:2;14024:18;;14010:215::o;14232:210::-;25520:13;;25513:21;5671:34;;14353:2;14338:18;;14324:118::o;14449:222::-;5788:37;;;14576:2;14561:18;;14547:124::o;14678:556::-;5788:37;;;-1:-1;;;;;25799:54;;;;15054:2;15039:18;;5557:37;15137:2;15122:18;;5788:37;15220:2;15205:18;;5788:37;14889:3;14874:19;;14860:374::o;15241:556::-;5788:37;;;15617:2;15602:18;;5788:37;;;;15700:2;15685:18;;5788:37;-1:-1;;;;;25799:54;15783:2;15768:18;;5557:37;15452:3;15437:19;;15423:374::o;15804:548::-;5788:37;;;26110:4;26099:16;;;;16172:2;16157:18;;12934:35;16255:2;16240:18;;5788:37;16338:2;16323:18;;5788:37;16011:3;15996:19;;15982:370::o;16359:310::-;;16506:2;;16527:17;16520:47;6141:5;24883:12;25040:6;16506:2;16495:9;16491:18;25028:19;-1:-1;26579:101;26593:6;26590:1;26587:13;26579:101;;;26660:11;;;;;26654:18;26641:11;;;25068:14;26641:11;26634:39;26608:10;;26579:101;;;26695:6;26692:1;26689:13;26686:2;;;-1:-1;25068:14;26751:6;16495:9;26742:16;;26735:27;26686:2;-1:-1;26948:7;26932:14;-1:-1;;26928:28;6299:39;;;;25068:14;6299:39;;16477:192;-1:-1;;;16477:192::o;16676:416::-;16876:2;16890:47;;;6575:2;16861:18;;;25028:19;6611:34;25068:14;;;6591:55;-1:-1;;;6666:12;;;6659:37;6715:12;;;16847:245::o;17099:416::-;17299:2;17313:47;;;6966:2;17284:18;;;25028:19;7002:34;25068:14;;;6982:55;-1:-1;;;7057:12;;;7050:27;7096:12;;;17270:245::o;17522:416::-;17722:2;17736:47;;;7347:2;17707:18;;;25028:19;7383:34;25068:14;;;7363:55;-1:-1;;;7438:12;;;7431:30;7480:12;;;17693:245::o;17945:416::-;18145:2;18159:47;;;7731:2;18130:18;;;25028:19;7767:34;25068:14;;;7747:55;-1:-1;;;7822:12;;;7815:26;7860:12;;;18116:245::o;18368:416::-;18568:2;18582:47;;;8518:2;18553:18;;;25028:19;8554:29;25068:14;;;8534:50;8603:12;;;18539:245::o;18791:416::-;18991:2;19005:47;;;18976:18;;;25028:19;8890:34;25068:14;;;8870:55;8944:12;;;18962:245::o;19214:416::-;19414:2;19428:47;;;9195:2;19399:18;;;25028:19;9231:34;25068:14;;;9211:55;-1:-1;;;9286:12;;;9279:25;9323:12;;;19385:245::o;19637:416::-;19837:2;19851:47;;;9574:2;19822:18;;;25028:19;9610:34;25068:14;;;9590:55;-1:-1;;;9665:12;;;9658:29;9706:12;;;19808:245::o;20060:416::-;20260:2;20274:47;;;9957:2;20245:18;;;25028:19;9993:26;25068:14;;;9973:47;10039:12;;;20231:245::o;20483:416::-;20683:2;20697:47;;;10290:2;20668:18;;;25028:19;10326:30;25068:14;;;10306:51;10376:12;;;20654:245::o;20906:416::-;21106:2;21120:47;;;10627:2;21091:18;;;25028:19;10663:34;25068:14;;;10643:55;-1:-1;;;10718:12;;;10711:28;10758:12;;;21077:245::o;21329:416::-;21529:2;21543:47;;;11009:2;21514:18;;;25028:19;11045:33;25068:14;;;11025:54;11098:12;;;21500:245::o;21752:416::-;21952:2;21966:47;;;11349:2;21937:18;;;25028:19;11385:34;25068:14;;;11365:55;-1:-1;;;11440:12;;;11433:36;11488:12;;;21923:245::o;22175:416::-;22375:2;22389:47;;;11739:2;22360:18;;;25028:19;11775:34;25068:14;;;11755:55;-1:-1;;;11830:12;;;11823:32;11874:12;;;22346:245::o;22598:416::-;22798:2;22812:47;;;12125:2;22783:18;;;25028:19;12161:33;25068:14;;;12141:54;12214:12;;;22769:245::o;23021:416::-;23221:2;23235:47;;;12465:2;23206:18;;;25028:19;12501:34;25068:14;;;12481:55;-1:-1;;;12556:12;;;12549:36;12604:12;;;23192:245::o;23673:333::-;5788:37;;;23992:2;23977:18;;5788:37;23828:2;23813:18;;23799:207::o;24013:218::-;26016:10;26005:22;;;;12819:36;;24138:2;24123:18;;24109:122::o;24238:329::-;26016:10;26005:22;;;;12819:36;;24553:2;24538:18;;5788:37;24391:2;24376:18;;24362:205::o;24574:214::-;26110:4;26099:16;;;;12934:35;;24697:2;24682:18;;24668:120::o;26969:117::-;-1:-1;;;;;25799:54;;27028:35;;27018:2;;27077:1;;27067:12
Swarm Source
ipfs://fb95817f45253c4a316962c31647b3a1c25052db0986185e1cc49690502bae54
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 34 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.