ERC-20
Energy Sector
Overview
Max Total Supply
2,789,769.387756627123382104 MCO2
Holders
3,839 (0.00%)
Market
Price
$0.44 @ 0.000178 ETH (+2.12%)
Onchain Market Cap
$1,240,953.59
Circulating Supply Market Cap
$0.00
Other Info
Token Contract (WITH 18 Decimals)
Balance
35.000000000000001909 MCO2Value
$15.57 ( ~0.00621962821213147 Eth) [0.0013%]Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ControlledToken
Compiler Version
v0.5.16+commit.9c3226ce
Contract Source Code (Solidity)Audit Report
/** *Submitted for verification at Etherscan.io on 2020-09-30 */ pragma solidity ^0.5.0; // [email protected] from NPM /** * @title Roles * @dev Library for managing addresses assigned to a Role. */ library Roles { struct Role { mapping (address => bool) bearer; } /** * @dev Give an account access to this role. */ function add(Role storage role, address account) internal { require(!has(role, account), "Roles: account already has role"); role.bearer[account] = true; } /** * @dev Remove an account's access to this role. */ function remove(Role storage role, address account) internal { require(has(role, account), "Roles: account does not have role"); role.bearer[account] = false; } /** * @dev Check if an account has this role. * @return bool */ function has(Role storage role, address account) internal view returns (bool) { require(account != address(0), "Roles: account is the zero address"); return role.bearer[account]; } } contract OperatorRole { using Roles for Roles.Role; event OperatorAdded(address indexed account); event OperatorRemoved(address indexed account); Roles.Role private _operators; constructor () internal { _addOperator(msg.sender); } modifier onlyOperator() { require(isOperator(msg.sender), "OperatorRole: caller does not have the Operator role"); _; } function isOperator(address account) public view returns (bool) { return _operators.has(account); } function addOperator(address account) public onlyOperator { _addOperator(account); } function renounceOperator() public onlyOperator { _removeOperator(msg.sender); } function _addOperator(address account) internal { _operators.add(account); emit OperatorAdded(account); } function _removeOperator(address account) internal { _operators.remove(account); emit OperatorRemoved(account); } } contract MinterRole { using Roles for Roles.Role; event MinterAdded(address indexed account); event MinterRemoved(address indexed account); Roles.Role private _minters; constructor () internal { _addMinter(msg.sender); } modifier onlyMinter() { require(isMinter(msg.sender), "MinterRole: caller does not have the Minter role"); _; } function isMinter(address account) public view returns (bool) { return _minters.has(account); } function addMinter(address account) public onlyMinter { _addMinter(account); } function renounceMinter() public { _removeMinter(msg.sender); } function _addMinter(address account) internal { _minters.add(account); emit MinterAdded(account); } function _removeMinter(address account) internal { _minters.remove(account); emit MinterRemoved(account); } } contract CreatorRole { using Roles for Roles.Role; event CreatorAdded(address indexed account); event CreatorRemoved(address indexed account); Roles.Role private _creators; constructor () internal { _addCreator(msg.sender); } modifier onlyCreator() { require(isCreator(msg.sender), "CreatorRole: caller does not have the Creator role"); _; } function isCreator(address account) public view returns (bool) { return _creators.has(account); } function _addCreator(address account) internal { _creators.add(account); emit CreatorAdded(account); } function _removeCreator(address account) internal { _creators.remove(account); emit CreatorRemoved(account); } } contract PauserRole { using Roles for Roles.Role; event PauserAdded(address indexed account); event PauserRemoved(address indexed account); Roles.Role private _pausers; constructor () internal { _addPauser(msg.sender); } modifier onlyPauser() { require(isPauser(msg.sender), "PauserRole: caller does not have the Pauser role"); _; } function isPauser(address account) public view returns (bool) { return _pausers.has(account); } function addPauser(address account) public onlyPauser { _addPauser(account); } function renouncePauser() public { _removePauser(msg.sender); } function _addPauser(address account) internal { _pausers.add(account); emit PauserAdded(account); } function _removePauser(address account) internal { _pausers.remove(account); emit PauserRemoved(account); } } /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ contract Pausable is PauserRole { /** * @dev Emitted when the pause is triggered by a pauser (`account`). */ event Paused(address account); /** * @dev Emitted when the pause is lifted by a pauser (`account`). */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. Assigns the Pauser role * to the deployer. */ constructor () internal { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. */ modifier whenNotPaused() { require(!_paused, "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. */ modifier whenPaused() { require(_paused, "Pausable: not paused"); _; } /** * @dev Called by a pauser to pause, triggers stopped state. */ function pause() public onlyPauser whenNotPaused { _paused = true; emit Paused(msg.sender); } /** * @dev Called by a pauser to unpause, returns to normal state. */ function unpause() public onlyPauser whenPaused { _paused = false; emit Unpaused(msg.sender); } } contract BurnerRole { using Roles for Roles.Role; event BurnerAdded(address indexed account); event BurnerRemoved(address indexed account); Roles.Role private _burners; constructor () internal { _addBurner(msg.sender); } modifier onlyBurner() { require(isBurner(msg.sender), "BurnerRole: caller does not have the Burner role"); _; } function isBurner(address account) public view returns (bool) { return _burners.has(account); } function addBurner(address account) public onlyBurner { _addBurner(account); } function renounceBurner() public onlyBurner { _removeBurner(msg.sender); } function _addBurner(address account) internal { _burners.add(account); emit BurnerAdded(account); } function _removeBurner(address account) internal { _burners.remove(account); emit BurnerRemoved(account); } } /** * @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) { require(b <= a, "SafeMath: subtraction overflow"); 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-solidity/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) { // Solidity only automatically asserts when dividing by 0 require(b > 0, "SafeMath: division by zero"); 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) { require(b != 0, "SafeMath: modulo by zero"); return a % b; } } /** * @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. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be aplied to your functions to restrict their use to * the owner. */ contract Ownable { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { _owner = msg.sender; emit OwnershipTransferred(address(0), _owner); } /** * @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(isOwner(), "Ownable: caller is not the owner"); _; } /** * @dev Returns true if the caller is the current owner. */ function isOwner() public view returns (bool) { return msg.sender == _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 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 onlyOwner { _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). */ function _transferOwnership(address newOwner) internal { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } contract TokenAccessList is Ownable { string public identifier; mapping(address => bool) private accessList; event WalletEnabled(address indexed wallet); event WalletDisabled(address indexed wallet); constructor(string memory _identifier) public { identifier = _identifier; } function enableWallet(address _wallet) public onlyOwner { require(_wallet != address(0), "Invalid wallet"); accessList[_wallet] = true; emit WalletEnabled(_wallet); } function disableWallet(address _wallet) public onlyOwner { accessList[_wallet] = false; emit WalletDisabled(_wallet); } function enableWalletList(address[] calldata _walletList) external onlyOwner { for(uint i = 0; i < _walletList.length; i++) { enableWallet(_walletList[i]); } } function disableWalletList(address[] calldata _walletList) external onlyOwner { for(uint i = 0; i < _walletList.length; i++) { disableWallet(_walletList[i]); } } function checkEnabled(address _wallet) public view returns (bool) { return _wallet == address(0) || accessList[_wallet]; } function checkEnabledList(address _w1, address _w2, address _w3) external view returns (bool) { return checkEnabled(_w1) && checkEnabled(_w2) && checkEnabled(_w3); } } /** * @dev Interface of the ERC20 standard as defined in the EIP. Does not include * the optional functions; to access them see `ERC20Detailed`. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a `Transfer` event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through `transferFrom`. This is * zero by default. * * This value changes when `approve` or `transferFrom` are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * > Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an `Approval` event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a `Transfer` event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to `approve`. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } /** * @dev Implementation of the `IERC20` interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using `_mint`. * For a generic mechanism see `ERC20Mintable`. * * *For a detailed writeup see our guide [How to implement supply * mechanisms](https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226).* * * 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 IERC20 { using SafeMath for uint256; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; /** * @dev See `IERC20.totalSupply`. */ function totalSupply() public view returns (uint256) { return _totalSupply; } /** * @dev See `IERC20.balanceOf`. */ function balanceOf(address account) public view returns (uint256) { return _balances[account]; } /** * @dev See `IERC20.transfer`. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public returns (bool) { _transfer(msg.sender, recipient, amount); return true; } /** * @dev See `IERC20.allowance`. */ function allowance(address owner, address spender) public view returns (uint256) { return _allowances[owner][spender]; } /** * @dev See `IERC20.approve`. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 value) public returns (bool) { _approve(msg.sender, spender, value); 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 `value`. * - the caller must have allowance for `sender`'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public returns (bool) { _transfer(sender, recipient, amount); _approve(sender, msg.sender, _allowances[sender][msg.sender].sub(amount)); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to `approve` that can be used as a mitigation for * problems described in `IERC20.approve`. * * Emits an `Approval` event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public returns (bool) { _approve(msg.sender, spender, _allowances[msg.sender][spender].add(addedValue)); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to `approve` that can be used as a mitigation for * problems described in `IERC20.approve`. * * Emits an `Approval` event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) { _approve(msg.sender, spender, _allowances[msg.sender][spender].sub(subtractedValue)); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to `transfer`, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a `Transfer` event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _balances[sender] = _balances[sender].sub(amount); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a `Transfer` event with `from` set to the zero address. * * Requirements * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal { require(account != address(0), "ERC20: mint to the zero address"); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destoys `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 value) internal { require(account != address(0), "ERC20: burn from the zero address"); _totalSupply = _totalSupply.sub(value); _balances[account] = _balances[account].sub(value); emit Transfer(account, address(0), value); } /** * @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 value) internal { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = value; emit Approval(owner, spender, value); } /** * @dev Destoys `amount` tokens from `account`.`amount` is then deducted * from the caller's allowance. * * See `_burn` and `_approve`. */ function _burnFrom(address account, uint256 amount) internal { _burn(account, amount); _approve(account, msg.sender, _allowances[account][msg.sender].sub(amount)); } } /** * @dev Extension of `ERC20` allows a centralized owner to burn users' tokens * * At construction time, the deployer of the contract is the only burner. */ contract ERC20Operator is ERC20, OperatorRole { event ForcedTransfer(address requester, address from, address to, uint256 value); /** * @dev new function to burn tokens from a centralized owner * @param _from address The address which the operator wants to send tokens from * @param _to address The address which the operator wants to transfer to * @param _value uint256 the amount of tokens to be transferred * @return A boolean that indicates if the operation was successful. */ function forcedTransfer(address _from, address _to, uint256 _value) public onlyOperator returns (bool) { _transfer(_from, _to, _value); emit ForcedTransfer(msg.sender, _from, _to, _value); return true; } } /** * @dev Extension of `ERC20` that adds a set of accounts with the `MinterRole`, * which have permission to mint (create) new tokens as they see fit. * * At construction, the deployer of the contract is the only minter. */ contract ERC20Mintable is ERC20, MinterRole { /** * @dev See `ERC20._mint`. * * Requirements: * * - the caller must have the `MinterRole`. */ function mint(address account, uint256 amount) public onlyMinter returns (bool) { _mint(account, amount); return true; } } /** * @dev Modification of OpenZeppelin's ERC20Capped. Implements a mechanism * to enable and disable cap control, as well as cap modification. */ contract ERC20CapEnabler is ERC20Mintable, CreatorRole { uint256 public cap; bool public capEnabled; event CapEnabled(address sender); event CapDisabled(address sender); event CapSet(address sender, uint256 amount); /** * @dev Enable cap control on minting. */ function enableCap() external onlyCreator { capEnabled = true; emit CapEnabled(msg.sender); } /** * @dev Disable cap control on minting and set cap back to 0. */ function disableCap() external onlyCreator { capEnabled = false; // set cap to 0 cap = 0; emit CapDisabled(msg.sender); } /** * @dev Set a new cap. */ function setCap(uint256 _newCap) external onlyCreator { cap = _newCap; emit CapSet(msg.sender, _newCap); } /** * @dev Overrides mint by checking whether cap control is enabled and * reverting if the token addition to supply will exceed the cap. */ function mint(address account, uint256 value) public onlyMinter returns (bool) { if (capEnabled) require(totalSupply().add(value) <= cap, "ERC20CapEnabler: cap exceeded"); return super.mint(account, value); } } /** * @title Pausable token * @dev ERC20 modified with pausable transfers. */ contract ERC20Pausable is ERC20, Pausable { function transfer(address to, uint256 value) public whenNotPaused returns (bool) { return super.transfer(to, value); } function transferFrom(address from, address to, uint256 value) public whenNotPaused returns (bool) { return super.transferFrom(from, to, value); } function approve(address spender, uint256 value) public whenNotPaused returns (bool) { return super.approve(spender, value); } function increaseAllowance(address spender, uint addedValue) public whenNotPaused returns (bool) { return super.increaseAllowance(spender, addedValue); } function decreaseAllowance(address spender, uint subtractedValue) public whenNotPaused returns (bool) { return super.decreaseAllowance(spender, subtractedValue); } } /** * ERC20 implementation that optionally allows the setup of a access list, * which may or may not be required by regulators. If a access list is * configured, then the contract starts validating parties. * Only the token creator, represented by the CreatorRole, is allowed * to add and remove the access list */ contract ERC20AccessList is ERC20Pausable, ERC20CapEnabler, ERC20Operator { TokenAccessList public accessList; bool public checkingAccessList; address constant private EMPTY_ADDRESS = address(0); /** * Admin events */ event AccessListSet(address accessList); event AccessListUnset(); modifier hasAccess(address _w1, address _w2, address _w3) { if (checkingAccessList) { require(accessList.checkEnabledList(_w1, _w2, _w3), "AccessList: address not authorized"); } _; } /** * Admin functions */ /** * @dev Sets up the centralized accessList contract * @param _accessList the address of accessList contract. * @return A boolean that indicates if the operation was successful. */ function setupAccessList(address _accessList) public onlyCreator { require(_accessList != address(0), "Invalid access list address"); accessList = TokenAccessList(_accessList); checkingAccessList = true; emit AccessListSet(_accessList); } /** * @dev Removes the accessList * @return A boolean that indicates if the operation was successful. */ function removeAccessList() public onlyCreator { checkingAccessList = false; accessList = TokenAccessList(0x0); emit AccessListUnset(); } /** * @dev Overrides MintableToken mint() adding the accessList validation * @param _to The address that will receive the minted tokens. * @param _amount The amount of tokens to mint. * @return A boolean that indicates if the operation was successful. */ function mint(address _to, uint256 _amount) public onlyMinter hasAccess(_to, EMPTY_ADDRESS, EMPTY_ADDRESS) returns (bool) { return super.mint(_to, _amount); } /** * User functions */ /** * @dev Overrides BasicToken transfer() adding the accessList validation * @param _to The address to transfer to. * @param _value The amount to be transferred. * @return A boolean that indicates if the operation was successful. */ function transfer(address _to, uint256 _value) public whenNotPaused hasAccess(msg.sender, _to, EMPTY_ADDRESS) returns (bool) { return super.transfer(_to, _value); } /** * @dev Overrides BasicToken transfer() adding the accessList validation * @param _to The address to transfer from. * @param _to The address to transfer to. * @param _value The amount to be transferred. * @return A boolean that indicates if the operation was successful. */ function forcedTransfer(address _from, address _to, uint256 _value) public whenNotPaused hasAccess(_from, _to, EMPTY_ADDRESS) returns (bool) { return super.forcedTransfer(_from, _to, _value); } /** * @dev Overrides StandardToken transferFrom() adding the accessList validation * @param _from address The address which you want to send tokens from * @param _to address The address which you want to transfer to * @param _value uint256 the amount of tokens to be transferred */ function transferFrom(address _from, address _to, uint256 _value) public whenNotPaused hasAccess(msg.sender, _from, _to) returns (bool) { return super.transferFrom(_from, _to, _value); } /** * @dev Overrides StandardToken approve() adding the accessList validation * @param _spender The address which will spend the funds. * @param _value The amount of tokens to be spent. * @return A boolean that indicates if the operation was successful. */ function approve(address _spender, uint256 _value) public whenNotPaused hasAccess(msg.sender, _spender, EMPTY_ADDRESS) returns (bool) { return super.approve(_spender, _value); } /** * @dev Overrides StandardToken increaseApproval() adding the accessList validation * @param _spender The address which will spend the funds. * @param _addedValue The amount of tokens to increase the allowance by. * @return A boolean that indicates if the operation was successful. */ function increaseAllowance(address _spender, uint _addedValue) public whenNotPaused hasAccess(msg.sender, _spender, EMPTY_ADDRESS) returns (bool) { return super.increaseAllowance(_spender, _addedValue); } /** * @dev Overrides StandardToken decreaseApproval() adding the accessList validation * @param _spender The address which will spend the funds. * @param _subtractedValue The amount of tokens to decrease the allowance by. * @return A boolean that indicates if the operation was successful. */ function decreaseAllowance(address _spender, uint _subtractedValue) public whenNotPaused hasAccess(msg.sender, _spender, EMPTY_ADDRESS) returns (bool) { return super.decreaseAllowance(_spender, _subtractedValue); } } /** * @dev Extension of `ERC20` allows a centralized owner to burn users' tokens * * At construction time, the deployer of the contract is the only burner. */ contract ERC20BurnableAdmin is ERC20, BurnerRole { event ForcedBurn(address requester, address wallet, uint256 value); /** * @dev new function to burn tokens from a centralized owner * @param _who The address which will be burned. * @param _value The amount of tokens to burn. * @return A boolean that indicates if the operation was successful. */ function forcedBurn(address _who, uint256 _value) public onlyBurner returns (bool) { _burn(_who, _value); emit ForcedBurn(msg.sender, _who, _value); return true; } } /** * @dev Optional functions from the ERC20 standard. */ contract ERC20Detailed is IERC20 { string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for `name`, `symbol`, and `decimals`. All three of * these values are immutable: they can only be set once during * construction. */ constructor (string memory name, string memory symbol, uint8 decimals) public { _name = name; _symbol = symbol; _decimals = decimals; } /** * @dev Returns the name of the token. */ function name() public view returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. * * > Note that 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; } } /** * This implementation adds a control layer over the ERC20. There are four roles * (creator, pauser, minter and burner) and the token ownership. Token creator * has powers to add and remove pausers, minters and burners. Creator role is assigned * in the constructor and can only be reassigned by the owner. * The owner has the power to claim roles, as an emergency stop mechanism. */ contract ControlledToken is Ownable, ERC20Detailed, ERC20BurnableAdmin, ERC20AccessList { string public info; constructor(string memory _name, string memory _symbol, uint8 _decimals, string memory _info, address _creator) public ERC20Detailed(_name, _symbol, _decimals) { info = _info; // adds all roles to creator _addCreator(_creator); _addPauser(_creator); _addMinter(_creator); _addBurner(_creator); _addOperator(_creator); // remove all roles from token factory _removeCreator(msg.sender); _removePauser(msg.sender); _removeMinter(msg.sender); _removeBurner(msg.sender); _removeOperator(msg.sender); } /** * Platform owner functions */ /** * @dev claims creator role from an address. * @param _address The address will be removed. */ function claimCreator(address _address) public onlyOwner { _removeCreator(_address); _addCreator(msg.sender); } /** * @dev claims operator role from an address. * @param _address The address will be removed. */ function claimOperator(address _address) public onlyOwner { _removeOperator(_address); _addOperator(msg.sender); } /** * @dev claims minter role from an address. * @param _address The address will be removed. */ function claimMinter(address _address) public onlyOwner { _removeMinter(_address); _addMinter(msg.sender); } /** * @dev claims burner role from an address. * @param _address The address will be removed. */ function claimBurner(address _address) public onlyOwner { _removeBurner(_address); _addBurner(msg.sender); } /** * @dev claims pauser role from an address. * @param _address The address will be removed. */ function claimPauser(address _address) public onlyOwner { _removePauser(_address); _addPauser(msg.sender); } /** * @dev adds new creator. * @param _address The address will be removed. */ function addCreator(address _address) public onlyOwner { _addCreator(_address); } /** * @dev renounces to creator role */ function renounceCreator() public onlyOwner { _removeCreator(msg.sender); } /** * Creator functions */ /** * @dev adds minter role to and address. * @param _address The address will be added. * Needed in case the last minter renounces the role */ function adminAddMinter(address _address) public onlyCreator { _addMinter(_address); } /** * @dev removes minter role from an address. * @param _address The address will be removed. */ function removeMinter(address _address) public onlyCreator { _removeMinter(_address); } /** * @dev adds pauser role to and address. * @param _address The address will be added. * Needed in case the last pauser renounces the role */ function adminAddPauser(address _address) public onlyCreator { _addPauser(_address); } /** * @dev removes pauser role from an address. * @param _address The address will be removed. */ function removePauser(address _address) public onlyCreator { _removePauser(_address); } /** * @dev adds pauser role to and address. * @param _address The address will be added. * Needed in case the last pauser renounces the role */ function adminAddOperator(address _address) public onlyCreator { _addOperator(_address); } /** * @dev removes operator role from an address. * @param _address The address will be removed. */ function removeOperator(address _address) public onlyCreator { _removeOperator(_address); } /** * @dev adds burner role to and address. * @param _address The address will be added. * Needed in case the last burner renounces the role */ function adminAddBurner(address _address) public onlyCreator { _addBurner(_address); } /** * @dev removes burner role fom an address. * @param _address The address will be removed. */ function removeBurner(address _address) public onlyCreator { _removeBurner(_address); } }
Contract Security Audit
- Certik - September 1st, 2020 - Security Audit Report
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint8","name":"_decimals","type":"uint8"},{"internalType":"string","name":"_info","type":"string"},{"internalType":"address","name":"_creator","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"accessList","type":"address"}],"name":"AccessListSet","type":"event"},{"anonymous":false,"inputs":[],"name":"AccessListUnset","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"BurnerAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"BurnerRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"sender","type":"address"}],"name":"CapDisabled","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"sender","type":"address"}],"name":"CapEnabled","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"CapSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"CreatorAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"CreatorRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"requester","type":"address"},{"indexed":false,"internalType":"address","name":"wallet","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"ForcedBurn","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"requester","type":"address"},{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"ForcedTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"MinterAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"MinterRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"OperatorAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"OperatorRemoved","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"PauserAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"PauserRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"constant":true,"inputs":[],"name":"accessList","outputs":[{"internalType":"contract TokenAccessList","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addBurner","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"addCreator","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addOperator","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addPauser","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"adminAddBurner","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"adminAddMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"adminAddOperator","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"adminAddPauser","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_spender","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"cap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"capEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"checkingAccessList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"claimBurner","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"claimCreator","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"claimMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"claimOperator","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"claimPauser","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_spender","type":"address"},{"internalType":"uint256","name":"_subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"disableCap","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"enableCap","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_who","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"forcedBurn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"forcedTransfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_spender","type":"address"},{"internalType":"uint256","name":"_addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"info","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isBurner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isCreator","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isOperator","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isPauser","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"removeAccessList","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"removeBurner","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"removeMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"removeOperator","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"removePauser","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renounceBurner","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renounceCreator","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renounceMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renounceOperator","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renouncePauser","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"_newCap","type":"uint256"}],"name":"setCap","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_accessList","type":"address"}],"name":"setupAccessList","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405162003cd738038062003cd7833981810160405260a08110156200003757600080fd5b81019080805160405193929190846401000000008211156200005857600080fd5b9083019060208201858111156200006e57600080fd5b82516401000000008111828201881017156200008957600080fd5b82525081516020918201929091019080838360005b83811015620000b85781810151838201526020016200009e565b50505050905090810190601f168015620000e65780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200010a57600080fd5b9083019060208201858111156200012057600080fd5b82516401000000008111828201881017156200013b57600080fd5b82525081516020918201929091019080838360005b838110156200016a57818101518382015260200162000150565b50505050905090810190601f168015620001985780820380516001836020036101000a031916815260200191505b50604081815260208301519201805192949193919284640100000000821115620001c157600080fd5b908301906020820185811115620001d757600080fd5b8251640100000000811182820188101715620001f257600080fd5b82525081516020918201929091019080838360005b838110156200022157818101518382015260200162000207565b50505050905090810190601f1680156200024f5780820380516001836020036101000a031916815260200191505b50604081905260209190910151600080546001600160a01b0319163317808255919450889350879287926001600160a01b031691907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a38251620002be906001906020860190620008d8565b508151620002d4906002906020850190620008d8565b506003805460ff191660ff9290921691909117905550620002f79050336200043a565b6200030b336001600160e01b036200048c16565b6009805460ff1916905562000329336001600160e01b03620004de16565b6200033d336001600160e01b036200053016565b62000351336001600160e01b036200058216565b815162000366906010906020850190620008d8565b506200037b816001600160e01b036200053016565b6200038f816001600160e01b036200048c16565b620003a3816001600160e01b03620004de16565b620003b7816001600160e01b036200043a16565b620003cb816001600160e01b036200058216565b620003df336001600160e01b03620005d416565b620003f3336001600160e01b036200062616565b62000407336001600160e01b036200067816565b6200041b336001600160e01b03620006ca16565b6200042f336001600160e01b036200071c16565b50505050506200097d565b620004558160076200076e60201b62002afc1790919060201c565b6040516001600160a01b038216907f86e57fd2b90329052917118de7c3f521f400d439b9650deaa906a25b08b9456090600090a250565b620004a78160086200076e60201b62002afc1790919060201c565b6040516001600160a01b038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b620004f981600a6200076e60201b62002afc1790919060201c565b6040516001600160a01b038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b6200054b81600b6200076e60201b62002afc1790919060201c565b6040516001600160a01b038216907f021a687fbe334e9e815cee8b399c0bc42e82356eb7f63a09ddb558a25d3dcdbd90600090a250565b6200059d81600e6200076e60201b62002afc1790919060201c565b6040516001600160a01b038216907fac6fa858e9350a46cec16539926e0fde25b7629f84b5a72bffaae4df888ae86d90600090a250565b620005ef81600b620007fb60201b62002a7f1790919060201c565b6040516001600160a01b038216907f94a409f50d78dc8628b7499ba5af0848a134b9a935a59c0a45313b67f66920f890600090a250565b62000641816008620007fb60201b62002a7f1790919060201c565b6040516001600160a01b038216907fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e90600090a250565b6200069381600a620007fb60201b62002a7f1790919060201c565b6040516001600160a01b038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b620006e5816007620007fb60201b62002a7f1790919060201c565b6040516001600160a01b038216907f90eabbc0c667db2a5029ed6bc0f5fe9f356d11684a4ca9fcfaec0e53f12b9c8e90600090a250565b6200073781600e620007fb60201b62002a7f1790919060201c565b6040516001600160a01b038216907f80c0b871b97b595b16a7741c1b06fed0c6f6f558639f18ccbce50724325dc40d90600090a250565b6200078382826001600160e01b036200086f16565b15620007d6576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b6200081082826001600160e01b036200086f16565b6200084d5760405162461bcd60e51b815260040180806020018281038252602181526020018062003c946021913960400191505060405180910390fd5b6001600160a01b0316600090815260209190915260409020805460ff19169055565b60006001600160a01b038216620008b85760405162461bcd60e51b815260040180806020018281038252602281526020018062003cb56022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200091b57805160ff19168380011785556200094b565b828001600101855582156200094b579182015b828111156200094b5782518255916020019190600101906200092e565b50620009599291506200095d565b5090565b6200097a91905b8082111562000959576000815560010162000964565b90565b613307806200098d6000396000f3fe608060405234801561001057600080fd5b50600436106103995760003560e01c80636ef8d66d116101e9578063aa271e1a1161010f578063cb0316d0116100ad578063efd460651161007c578063efd4606514610a28578063f2fde38b14610a4e578063f44637ba14610a74578063febce92c14610a9a57610399565b8063cb0316d0146109a6578063d65c7f30146109cc578063dd62ed3e146109f2578063e9ec9e8b14610a2057610399565b8063c4ec3b19116100e9578063c4ec3b1914610944578063c8b201521461094c578063ca2311be14610978578063cafb9b351461098057610399565b8063aa271e1a146108d2578063ac8a584a146108f8578063c37f32941461091e57610399565b806395d89b4111610187578063987e042c11610156578063987e042c1461083c5780639fc1d0e714610844578063a457c2d71461087a578063a9059cbb146108a657610399565b806395d89b41146107e0578063983b2d56146107e8578063986502751461080e5780639870d7fe1461081657610399565b806382dc1ec4116101c357806382dc1ec4146107a25780638456cb59146107c85780638da5cb5b146107d05780638f32d59b146107d857610399565b80636ef8d66d1461076c57806370a0823114610774578063715018a61461079a57610399565b806339509351116102ce57806347786d371161026c5780636a083b0c1161023b5780636a083b0c146106d45780636b2c0f55146106fa5780636d70f7ae146107205780636da7a4851461074657610399565b806347786d3714610663578063528a20f8146106805780635c975abb146106a657806366861b05146106ae57610399565b80633f4ba83a116102a85780633f4ba83a146105e357806340c10f19146105eb5780634334614a1461061757806346fbf68e1461063d57610399565b806339509351146105895780633a83e1b1146105b55780633b9dce05146105bd57610399565b806323b872dd1161033b5780633092afd5116103155780633092afd514610535578063313ce5671461055b578063355274ea14610579578063370158ea1461058157610399565b806323b872dd146104ef57806329e697f3146105255780632ab6f8db1461052d57610399565b8063138d194c11610377578063138d194c1461048357806318160ddd146104a75780631e6d3ce7146104c157806320c78e20146104c957610399565b8063028468581461039e57806306fdde03146103c6578063095ea7b314610443575b600080fd5b6103c4600480360360208110156103b457600080fd5b50356001600160a01b0316610ac0565b005b6103ce610b10565b6040805160208082528351818301528351919283929083019185019080838360005b838110156104085781810151838201526020016103f0565b50505050905090810190601f1680156104355780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61046f6004803603604081101561045957600080fd5b506001600160a01b038135169060200135610ba5565b604080519115158252519081900360200190f35b61048b610ce4565b604080516001600160a01b039092168252519081900360200190f35b6104af610cf3565b60408051918252519081900360200190f35b6103c4610cf9565b6103c4600480360360208110156104df57600080fd5b50356001600160a01b0316610d81565b61046f6004803603606081101561050557600080fd5b506001600160a01b03813581169160208101359091169060400135610dda565b6103c4610f1a565b6103c4610f99565b6103c46004803603602081101561054b57600080fd5b50356001600160a01b0316610fe8565b610563611035565b6040805160ff9092168252519081900360200190f35b6104af61103e565b6103ce611044565b61046f6004803603604081101561059f57600080fd5b506001600160a01b0381351690602001356110d2565b6103c4611207565b6103c4600480360360208110156105d357600080fd5b50356001600160a01b031661128d565b6103c46112dd565b61046f6004803603604081101561060157600080fd5b506001600160a01b0381351690602001356113ae565b61046f6004803603602081101561062d57600080fd5b50356001600160a01b03166114db565b61046f6004803603602081101561065357600080fd5b50356001600160a01b03166114f4565b6103c46004803603602081101561067957600080fd5b5035611507565b6103c46004803603602081101561069657600080fd5b50356001600160a01b031661158e565b61046f6115e7565b6103c4600480360360208110156106c457600080fd5b50356001600160a01b03166115f0565b6103c4600480360360208110156106ea57600080fd5b50356001600160a01b031661163d565b6103c46004803603602081101561071057600080fd5b50356001600160a01b031661173d565b61046f6004803603602081101561073657600080fd5b50356001600160a01b031661178a565b6103c46004803603602081101561075c57600080fd5b50356001600160a01b031661179d565b6103c46117ea565b6104af6004803603602081101561078a57600080fd5b50356001600160a01b03166117f3565b6103c461180e565b6103c4600480360360208110156107b857600080fd5b50356001600160a01b031661189f565b6103c46118e3565b61048b6119b4565b61046f6119c3565b6103ce6119d4565b6103c4600480360360208110156107fe57600080fd5b50356001600160a01b0316611a32565b6103c4611a76565b6103c46004803603602081101561082c57600080fd5b50356001600160a01b0316611a7f565b61046f611acc565b61046f6004803603606081101561085a57600080fd5b506001600160a01b03813581169160208101359091169060400135611adc565b61046f6004803603604081101561089057600080fd5b506001600160a01b038135169060200135611c12565b61046f600480360360408110156108bc57600080fd5b506001600160a01b038135169060200135611d47565b61046f600480360360208110156108e857600080fd5b50356001600160a01b0316611e7c565b6103c46004803603602081101561090e57600080fd5b50356001600160a01b0316611e8f565b6103c46004803603602081101561093457600080fd5b50356001600160a01b0316611edc565b61046f611f35565b61046f6004803603604081101561096257600080fd5b506001600160a01b038135169060200135611f3e565b6103c4611fdf565b6103c46004803603602081101561099657600080fd5b50356001600160a01b031661202f565b6103c4600480360360208110156109bc57600080fd5b50356001600160a01b0316612088565b6103c4600480360360208110156109e257600080fd5b50356001600160a01b03166120d5565b6104af60048036036040811015610a0857600080fd5b506001600160a01b038135811691602001351661212e565b6103c4612159565b61046f60048036036020811015610a3e57600080fd5b50356001600160a01b03166121a6565b6103c460048036036020811015610a6457600080fd5b50356001600160a01b03166121b9565b6103c460048036036020811015610a8a57600080fd5b50356001600160a01b0316612209565b6103c460048036036020811015610ab057600080fd5b50356001600160a01b031661224d565b610ac9336121a6565b610b045760405162461bcd60e51b815260040180806020018281038252603281526020018061327d6032913960400191505060405180910390fd5b610b0d81612291565b50565b60018054604080516020601f60026000196101008789161502019095169490940493840181900481028201810190925282815260609390929091830182828015610b9b5780601f10610b7057610100808354040283529160200191610b9b565b820191906000526020600020905b815481529060010190602001808311610b7e57829003601f168201915b5050505050905090565b60095460009060ff1615610bf3576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b33836000600f60149054906101000a900460ff1615610cd057600f54604080516398cd9d8b60e01b81526001600160a01b03868116600483015285811660248301528481166044830152915191909216916398cd9d8b916064808301926020929190829003018186803b158015610c6957600080fd5b505afa158015610c7d573d6000803e3d6000fd5b505050506040513d6020811015610c9357600080fd5b5051610cd05760405162461bcd60e51b81526004018080602001828103825260228152602001806132156022913960400191505060405180910390fd5b610cda86866122d9565b9695505050505050565b600f546001600160a01b031681565b60065490565b610d02336121a6565b610d3d5760405162461bcd60e51b815260040180806020018281038252603281526020018061327d6032913960400191505060405180910390fd5b600d805460ff191690556000600c556040805133815290517f6280a81c80b2df7faf6f83ce71e273a34be58559e9d50f976b404fface8052849181900360200190a1565b610d896119c3565b610dc8576040805162461bcd60e51b815260206004820181905260248201526000805160206131d3833981519152604482015290519081900360640190fd5b610dd181612338565b610b0d33612380565b60095460009060ff1615610e28576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b338484600f60149054906101000a900460ff1615610f0457600f54604080516398cd9d8b60e01b81526001600160a01b03868116600483015285811660248301528481166044830152915191909216916398cd9d8b916064808301926020929190829003018186803b158015610e9d57600080fd5b505afa158015610eb1573d6000803e3d6000fd5b505050506040513d6020811015610ec757600080fd5b5051610f045760405162461bcd60e51b81526004018080602001828103825260228152602001806132156022913960400191505060405180910390fd5b610f0f8787876123c8565b979650505050505050565b610f23336121a6565b610f5e5760405162461bcd60e51b815260040180806020018281038252603281526020018061327d6032913960400191505060405180910390fd5b600f80546001600160a81b03191690556040517f1c0623b9b3fdaa174e2f472f2698def360517d0f437bbb48bad21b43b96a229f90600090a1565b610fa23361178a565b610fdd5760405162461bcd60e51b815260040180806020018281038252603481526020018061314e6034913960400191505060405180910390fd5b610fe633612429565b565b610ff1336121a6565b61102c5760405162461bcd60e51b815260040180806020018281038252603281526020018061327d6032913960400191505060405180910390fd5b610b0d81612471565b60035460ff1690565b600c5481565b6010805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156110ca5780601f1061109f576101008083540402835291602001916110ca565b820191906000526020600020905b8154815290600101906020018083116110ad57829003601f168201915b505050505081565b60095460009060ff1615611120576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b33836000600f60149054906101000a900460ff16156111fd57600f54604080516398cd9d8b60e01b81526001600160a01b03868116600483015285811660248301528481166044830152915191909216916398cd9d8b916064808301926020929190829003018186803b15801561119657600080fd5b505afa1580156111aa573d6000803e3d6000fd5b505050506040513d60208110156111c057600080fd5b50516111fd5760405162461bcd60e51b81526004018080602001828103825260228152602001806132156022913960400191505060405180910390fd5b610cda86866124b9565b611210336121a6565b61124b5760405162461bcd60e51b815260040180806020018281038252603281526020018061327d6032913960400191505060405180910390fd5b600d805460ff191660011790556040805133815290517f444c236974761ca847da19780c83fa25a0df505fada90b6c87a194760c0cf2a09181900360200190a1565b6112956119c3565b6112d4576040805162461bcd60e51b815260206004820181905260248201526000805160206131d3833981519152604482015290519081900360640190fd5b610b0d81612511565b6112e6336114f4565b6113215760405162461bcd60e51b81526004018080602001828103825260308152602001806130a66030913960400191505060405180910390fd5b60095460ff1661136f576040805162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015290519081900360640190fd5b6009805460ff191690556040805133815290517f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa9181900360200190a1565b60006113b933611e7c565b6113f45760405162461bcd60e51b81526004018080602001828103825260308152602001806131826030913960400191505060405180910390fd5b82600080600f60149054906101000a900460ff16156114d157600f54604080516398cd9d8b60e01b81526001600160a01b03868116600483015285811660248301528481166044830152915191909216916398cd9d8b916064808301926020929190829003018186803b15801561146a57600080fd5b505afa15801561147e573d6000803e3d6000fd5b505050506040513d602081101561149457600080fd5b50516114d15760405162461bcd60e51b81526004018080602001828103825260228152602001806132156022913960400191505060405180910390fd5b610cda8686612559565b60006114ee60078363ffffffff61262216565b92915050565b60006114ee60088363ffffffff61262216565b611510336121a6565b61154b5760405162461bcd60e51b815260040180806020018281038252603281526020018061327d6032913960400191505060405180910390fd5b600c819055604080513381526020810183905281517f1c9182333abe71fddddd188f90cabb1c34182de0b0ac74c87944a196460a2d6c929181900390910190a150565b6115966119c3565b6115d5576040805162461bcd60e51b815260206004820181905260248201526000805160206131d3833981519152604482015290519081900360640190fd5b6115de81612429565b610b0d33612689565b60095460ff1690565b6115f9336121a6565b6116345760405162461bcd60e51b815260040180806020018281038252603281526020018061327d6032913960400191505060405180910390fd5b610b0d81612380565b611646336121a6565b6116815760405162461bcd60e51b815260040180806020018281038252603281526020018061327d6032913960400191505060405180910390fd5b6001600160a01b0381166116dc576040805162461bcd60e51b815260206004820152601b60248201527f496e76616c696420616363657373206c69737420616464726573730000000000604482015290519081900360640190fd5b600f805460ff60a01b196001600160a01b0384166001600160a01b0319909216821716600160a01b1790915560408051918252517fe854fd23aa1cc9c07a5e4b0652c3fe1a0cbcedbd13031f17aa6641af89fbbc7f9181900360200190a150565b611746336121a6565b6117815760405162461bcd60e51b815260040180806020018281038252603281526020018061327d6032913960400191505060405180910390fd5b610b0d81612338565b60006114ee600e8363ffffffff61262216565b6117a6336121a6565b6117e15760405162461bcd60e51b815260040180806020018281038252603281526020018061327d6032913960400191505060405180910390fd5b610b0d816126d1565b610fe633612338565b6001600160a01b031660009081526004602052604090205490565b6118166119c3565b611855576040805162461bcd60e51b815260206004820181905260248201526000805160206131d3833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6118a8336114f4565b6116345760405162461bcd60e51b81526004018080602001828103825260308152602001806130a66030913960400191505060405180910390fd5b6118ec336114f4565b6119275760405162461bcd60e51b81526004018080602001828103825260308152602001806130a66030913960400191505060405180910390fd5b60095460ff1615611972576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6009805460ff191660011790556040805133815290517f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2589181900360200190a1565b6000546001600160a01b031690565b6000546001600160a01b0316331490565b60028054604080516020601f6000196101006001871615020190941685900493840181900481028201810190925282815260609390929091830182828015610b9b5780601f10610b7057610100808354040283529160200191610b9b565b611a3b33611e7c565b6117e15760405162461bcd60e51b81526004018080602001828103825260308152602001806131826030913960400191505060405180910390fd5b610fe633612471565b611a883361178a565b611ac35760405162461bcd60e51b815260040180806020018281038252603481526020018061314e6034913960400191505060405180910390fd5b610b0d81612689565b600f54600160a01b900460ff1681565b60095460009060ff1615611b2a576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b83836000600f60149054906101000a900460ff1615611c0757600f54604080516398cd9d8b60e01b81526001600160a01b03868116600483015285811660248301528481166044830152915191909216916398cd9d8b916064808301926020929190829003018186803b158015611ba057600080fd5b505afa158015611bb4573d6000803e3d6000fd5b505050506040513d6020811015611bca57600080fd5b5051611c075760405162461bcd60e51b81526004018080602001828103825260228152602001806132156022913960400191505060405180910390fd5b610f0f878787612719565b60095460009060ff1615611c60576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b33836000600f60149054906101000a900460ff1615611d3d57600f54604080516398cd9d8b60e01b81526001600160a01b03868116600483015285811660248301528481166044830152915191909216916398cd9d8b916064808301926020929190829003018186803b158015611cd657600080fd5b505afa158015611cea573d6000803e3d6000fd5b505050506040513d6020811015611d0057600080fd5b5051611d3d5760405162461bcd60e51b81526004018080602001828103825260228152602001806132156022913960400191505060405180910390fd5b610cda86866127c4565b60095460009060ff1615611d95576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b33836000600f60149054906101000a900460ff1615611e7257600f54604080516398cd9d8b60e01b81526001600160a01b03868116600483015285811660248301528481166044830152915191909216916398cd9d8b916064808301926020929190829003018186803b158015611e0b57600080fd5b505afa158015611e1f573d6000803e3d6000fd5b505050506040513d6020811015611e3557600080fd5b5051611e725760405162461bcd60e51b81526004018080602001828103825260228152602001806132156022913960400191505060405180910390fd5b610cda868661281c565b60006114ee600a8363ffffffff61262216565b611e98336121a6565b611ed35760405162461bcd60e51b815260040180806020018281038252603281526020018061327d6032913960400191505060405180910390fd5b610b0d81612429565b611ee46119c3565b611f23576040805162461bcd60e51b815260206004820181905260248201526000805160206131d3833981519152604482015290519081900360640190fd5b611f2c81612291565b610b0d33612874565b600d5460ff1681565b6000611f49336114db565b611f845760405162461bcd60e51b815260040180806020018281038252603081526020018061311e6030913960400191505060405180910390fd5b611f8e83836128bc565b604080513381526001600160a01b038516602082015280820184905290517f7d87a0d6b3a3012345cd345f3818338913ce6a164fc30d6a7e8729f8176ef2a29181900360600190a150600192915050565b611fe76119c3565b612026576040805162461bcd60e51b815260206004820181905260248201526000805160206131d3833981519152604482015290519081900360640190fd5b610fe633612997565b6120376119c3565b612076576040805162461bcd60e51b815260206004820181905260248201526000805160206131d3833981519152604482015290519081900360640190fd5b61207f81612471565b610b0d336126d1565b612091336121a6565b6120cc5760405162461bcd60e51b815260040180806020018281038252603281526020018061327d6032913960400191505060405180910390fd5b610b0d81612874565b6120dd6119c3565b61211c576040805162461bcd60e51b815260206004820181905260248201526000805160206131d3833981519152604482015290519081900360640190fd5b61212581612997565b610b0d33612511565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b612162336114db565b61219d5760405162461bcd60e51b815260040180806020018281038252603081526020018061311e6030913960400191505060405180910390fd5b610fe633612291565b60006114ee600b8363ffffffff61262216565b6121c16119c3565b612200576040805162461bcd60e51b815260206004820181905260248201526000805160206131d3833981519152604482015290519081900360640190fd5b610b0d816129df565b612212336114db565b6120cc5760405162461bcd60e51b815260040180806020018281038252603081526020018061311e6030913960400191505060405180910390fd5b612256336121a6565b611ac35760405162461bcd60e51b815260040180806020018281038252603281526020018061327d6032913960400191505060405180910390fd5b6122a260078263ffffffff612a7f16565b6040516001600160a01b038216907f90eabbc0c667db2a5029ed6bc0f5fe9f356d11684a4ca9fcfaec0e53f12b9c8e90600090a250565b60095460009060ff1615612327576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6123318383612ae6565b9392505050565b61234960088263ffffffff612a7f16565b6040516001600160a01b038216907fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e90600090a250565b61239160088263ffffffff612afc16565b6040516001600160a01b038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b60095460009060ff1615612416576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b612421848484612b7d565b949350505050565b61243a600e8263ffffffff612a7f16565b6040516001600160a01b038216907f80c0b871b97b595b16a7741c1b06fed0c6f6f558639f18ccbce50724325dc40d90600090a250565b612482600a8263ffffffff612a7f16565b6040516001600160a01b038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b60095460009060ff1615612507576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6123318383612bd4565b612522600b8263ffffffff612afc16565b6040516001600160a01b038216907f021a687fbe334e9e815cee8b399c0bc42e82356eb7f63a09ddb558a25d3dcdbd90600090a250565b600061256433611e7c565b61259f5760405162461bcd60e51b81526004018080602001828103825260308152602001806131826030913960400191505060405180910390fd5b600d5460ff161561261857600c546125c5836125b9610cf3565b9063ffffffff612c1016565b1115612618576040805162461bcd60e51b815260206004820152601d60248201527f4552433230436170456e61626c65723a20636170206578636565646564000000604482015290519081900360640190fd5b6123318383612c6a565b60006001600160a01b0382166126695760405162461bcd60e51b81526004018080602001828103825260228152602001806131f36022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b61269a600e8263ffffffff612afc16565b6040516001600160a01b038216907fac6fa858e9350a46cec16539926e0fde25b7629f84b5a72bffaae4df888ae86d90600090a250565b6126e2600a8263ffffffff612afc16565b6040516001600160a01b038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b60006127243361178a565b61275f5760405162461bcd60e51b815260040180806020018281038252603481526020018061314e6034913960400191505060405180910390fd5b61276a848484612cba565b604080513381526001600160a01b0380871660208301528516818301526060810184905290517f47cea260e2dfb95ed2ab59ad44fe2ac9cddb432afb828d2a1475936b5a2b829a9181900360800190a15060019392505050565b60095460009060ff1615612812576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6123318383612dfe565b60095460009060ff161561286a576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6123318383612e3a565b61288560078263ffffffff612afc16565b6040516001600160a01b038216907f86e57fd2b90329052917118de7c3f521f400d439b9650deaa906a25b08b9456090600090a250565b6001600160a01b0382166129015760405162461bcd60e51b81526004018080602001828103825260218152602001806132376021913960400191505060405180910390fd5b600654612914908263ffffffff612e4716565b6006556001600160a01b038216600090815260046020526040902054612940908263ffffffff612e4716565b6001600160a01b0383166000818152600460209081526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050565b6129a8600b8263ffffffff612a7f16565b6040516001600160a01b038216907f94a409f50d78dc8628b7499ba5af0848a134b9a935a59c0a45313b67f66920f890600090a250565b6001600160a01b038116612a245760405162461bcd60e51b81526004018080602001828103825260268152602001806130d66026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b612a898282612622565b612ac45760405162461bcd60e51b81526004018080602001828103825260218152602001806131b26021913960400191505060405180910390fd5b6001600160a01b0316600090815260209190915260409020805460ff19169055565b6000612af3338484612ea4565b50600192915050565b612b068282612622565b15612b58576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b6000612b8a848484612cba565b6001600160a01b038416600090815260056020908152604080832033808552925290912054612bca918691612bc5908663ffffffff612e4716565b612ea4565b5060019392505050565b3360008181526005602090815260408083206001600160a01b03871684529091528120549091612af3918590612bc5908663ffffffff612c1016565b600082820183811015612331576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6000612c7533611e7c565b612cb05760405162461bcd60e51b81526004018080602001828103825260308152602001806131826030913960400191505060405180910390fd5b612af38383612f90565b6001600160a01b038316612cff5760405162461bcd60e51b81526004018080602001828103825260258152602001806132586025913960400191505060405180910390fd5b6001600160a01b038216612d445760405162461bcd60e51b81526004018080602001828103825260238152602001806130836023913960400191505060405180910390fd5b6001600160a01b038316600090815260046020526040902054612d6d908263ffffffff612e4716565b6001600160a01b038085166000908152600460205260408082209390935590841681522054612da2908263ffffffff612c1016565b6001600160a01b0380841660008181526004602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b3360008181526005602090815260408083206001600160a01b03871684529091528120549091612af3918590612bc5908663ffffffff612e4716565b6000612af3338484612cba565b600082821115612e9e576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b6001600160a01b038316612ee95760405162461bcd60e51b81526004018080602001828103825260248152602001806132af6024913960400191505060405180910390fd5b6001600160a01b038216612f2e5760405162461bcd60e51b81526004018080602001828103825260228152602001806130fc6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260056020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038216612feb576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b600654612ffe908263ffffffff612c1016565b6006556001600160a01b03821660009081526004602052604090205461302a908263ffffffff612c1016565b6001600160a01b03831660008181526004602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a3505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373506175736572526f6c653a2063616c6c657220646f6573206e6f742068617665207468652050617573657220726f6c654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573734275726e6572526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204275726e657220726f6c654f70657261746f72526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204f70657261746f7220726f6c654d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204d696e74657220726f6c65526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572526f6c65733a206163636f756e7420697320746865207a65726f20616464726573734163636573734c6973743a2061646472657373206e6f7420617574686f72697a656445524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737343726561746f72526f6c653a2063616c6c657220646f6573206e6f742068617665207468652043726561746f7220726f6c6545524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373a265627a7a72315820488fb8377045e70d7666b3703a831446cc70a2b1b11173a6eca3aa1150b958bc64736f6c63430005100032526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c65526f6c65733a206163636f756e7420697320746865207a65726f206164647265737300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000012000000000000000000000000070d5eadcb367bcf733fc98b441def1c7c5eec18700000000000000000000000000000000000000000000000000000000000000124d6f737320436172626f6e20437265646974000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044d434f3200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007f4561636820746f6b656e206973206f6e6520636172626f6e2063726564697420696e2074686520766f6c756e74617279206d61726b65742c20796f752063616e2066696e64206d6f726520696e666f726d6174696f6e20616e64206175646974206f6e20636f3263657274696669636174696f6e2e6d6f73732e656172746800
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106103995760003560e01c80636ef8d66d116101e9578063aa271e1a1161010f578063cb0316d0116100ad578063efd460651161007c578063efd4606514610a28578063f2fde38b14610a4e578063f44637ba14610a74578063febce92c14610a9a57610399565b8063cb0316d0146109a6578063d65c7f30146109cc578063dd62ed3e146109f2578063e9ec9e8b14610a2057610399565b8063c4ec3b19116100e9578063c4ec3b1914610944578063c8b201521461094c578063ca2311be14610978578063cafb9b351461098057610399565b8063aa271e1a146108d2578063ac8a584a146108f8578063c37f32941461091e57610399565b806395d89b4111610187578063987e042c11610156578063987e042c1461083c5780639fc1d0e714610844578063a457c2d71461087a578063a9059cbb146108a657610399565b806395d89b41146107e0578063983b2d56146107e8578063986502751461080e5780639870d7fe1461081657610399565b806382dc1ec4116101c357806382dc1ec4146107a25780638456cb59146107c85780638da5cb5b146107d05780638f32d59b146107d857610399565b80636ef8d66d1461076c57806370a0823114610774578063715018a61461079a57610399565b806339509351116102ce57806347786d371161026c5780636a083b0c1161023b5780636a083b0c146106d45780636b2c0f55146106fa5780636d70f7ae146107205780636da7a4851461074657610399565b806347786d3714610663578063528a20f8146106805780635c975abb146106a657806366861b05146106ae57610399565b80633f4ba83a116102a85780633f4ba83a146105e357806340c10f19146105eb5780634334614a1461061757806346fbf68e1461063d57610399565b806339509351146105895780633a83e1b1146105b55780633b9dce05146105bd57610399565b806323b872dd1161033b5780633092afd5116103155780633092afd514610535578063313ce5671461055b578063355274ea14610579578063370158ea1461058157610399565b806323b872dd146104ef57806329e697f3146105255780632ab6f8db1461052d57610399565b8063138d194c11610377578063138d194c1461048357806318160ddd146104a75780631e6d3ce7146104c157806320c78e20146104c957610399565b8063028468581461039e57806306fdde03146103c6578063095ea7b314610443575b600080fd5b6103c4600480360360208110156103b457600080fd5b50356001600160a01b0316610ac0565b005b6103ce610b10565b6040805160208082528351818301528351919283929083019185019080838360005b838110156104085781810151838201526020016103f0565b50505050905090810190601f1680156104355780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61046f6004803603604081101561045957600080fd5b506001600160a01b038135169060200135610ba5565b604080519115158252519081900360200190f35b61048b610ce4565b604080516001600160a01b039092168252519081900360200190f35b6104af610cf3565b60408051918252519081900360200190f35b6103c4610cf9565b6103c4600480360360208110156104df57600080fd5b50356001600160a01b0316610d81565b61046f6004803603606081101561050557600080fd5b506001600160a01b03813581169160208101359091169060400135610dda565b6103c4610f1a565b6103c4610f99565b6103c46004803603602081101561054b57600080fd5b50356001600160a01b0316610fe8565b610563611035565b6040805160ff9092168252519081900360200190f35b6104af61103e565b6103ce611044565b61046f6004803603604081101561059f57600080fd5b506001600160a01b0381351690602001356110d2565b6103c4611207565b6103c4600480360360208110156105d357600080fd5b50356001600160a01b031661128d565b6103c46112dd565b61046f6004803603604081101561060157600080fd5b506001600160a01b0381351690602001356113ae565b61046f6004803603602081101561062d57600080fd5b50356001600160a01b03166114db565b61046f6004803603602081101561065357600080fd5b50356001600160a01b03166114f4565b6103c46004803603602081101561067957600080fd5b5035611507565b6103c46004803603602081101561069657600080fd5b50356001600160a01b031661158e565b61046f6115e7565b6103c4600480360360208110156106c457600080fd5b50356001600160a01b03166115f0565b6103c4600480360360208110156106ea57600080fd5b50356001600160a01b031661163d565b6103c46004803603602081101561071057600080fd5b50356001600160a01b031661173d565b61046f6004803603602081101561073657600080fd5b50356001600160a01b031661178a565b6103c46004803603602081101561075c57600080fd5b50356001600160a01b031661179d565b6103c46117ea565b6104af6004803603602081101561078a57600080fd5b50356001600160a01b03166117f3565b6103c461180e565b6103c4600480360360208110156107b857600080fd5b50356001600160a01b031661189f565b6103c46118e3565b61048b6119b4565b61046f6119c3565b6103ce6119d4565b6103c4600480360360208110156107fe57600080fd5b50356001600160a01b0316611a32565b6103c4611a76565b6103c46004803603602081101561082c57600080fd5b50356001600160a01b0316611a7f565b61046f611acc565b61046f6004803603606081101561085a57600080fd5b506001600160a01b03813581169160208101359091169060400135611adc565b61046f6004803603604081101561089057600080fd5b506001600160a01b038135169060200135611c12565b61046f600480360360408110156108bc57600080fd5b506001600160a01b038135169060200135611d47565b61046f600480360360208110156108e857600080fd5b50356001600160a01b0316611e7c565b6103c46004803603602081101561090e57600080fd5b50356001600160a01b0316611e8f565b6103c46004803603602081101561093457600080fd5b50356001600160a01b0316611edc565b61046f611f35565b61046f6004803603604081101561096257600080fd5b506001600160a01b038135169060200135611f3e565b6103c4611fdf565b6103c46004803603602081101561099657600080fd5b50356001600160a01b031661202f565b6103c4600480360360208110156109bc57600080fd5b50356001600160a01b0316612088565b6103c4600480360360208110156109e257600080fd5b50356001600160a01b03166120d5565b6104af60048036036040811015610a0857600080fd5b506001600160a01b038135811691602001351661212e565b6103c4612159565b61046f60048036036020811015610a3e57600080fd5b50356001600160a01b03166121a6565b6103c460048036036020811015610a6457600080fd5b50356001600160a01b03166121b9565b6103c460048036036020811015610a8a57600080fd5b50356001600160a01b0316612209565b6103c460048036036020811015610ab057600080fd5b50356001600160a01b031661224d565b610ac9336121a6565b610b045760405162461bcd60e51b815260040180806020018281038252603281526020018061327d6032913960400191505060405180910390fd5b610b0d81612291565b50565b60018054604080516020601f60026000196101008789161502019095169490940493840181900481028201810190925282815260609390929091830182828015610b9b5780601f10610b7057610100808354040283529160200191610b9b565b820191906000526020600020905b815481529060010190602001808311610b7e57829003601f168201915b5050505050905090565b60095460009060ff1615610bf3576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b33836000600f60149054906101000a900460ff1615610cd057600f54604080516398cd9d8b60e01b81526001600160a01b03868116600483015285811660248301528481166044830152915191909216916398cd9d8b916064808301926020929190829003018186803b158015610c6957600080fd5b505afa158015610c7d573d6000803e3d6000fd5b505050506040513d6020811015610c9357600080fd5b5051610cd05760405162461bcd60e51b81526004018080602001828103825260228152602001806132156022913960400191505060405180910390fd5b610cda86866122d9565b9695505050505050565b600f546001600160a01b031681565b60065490565b610d02336121a6565b610d3d5760405162461bcd60e51b815260040180806020018281038252603281526020018061327d6032913960400191505060405180910390fd5b600d805460ff191690556000600c556040805133815290517f6280a81c80b2df7faf6f83ce71e273a34be58559e9d50f976b404fface8052849181900360200190a1565b610d896119c3565b610dc8576040805162461bcd60e51b815260206004820181905260248201526000805160206131d3833981519152604482015290519081900360640190fd5b610dd181612338565b610b0d33612380565b60095460009060ff1615610e28576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b338484600f60149054906101000a900460ff1615610f0457600f54604080516398cd9d8b60e01b81526001600160a01b03868116600483015285811660248301528481166044830152915191909216916398cd9d8b916064808301926020929190829003018186803b158015610e9d57600080fd5b505afa158015610eb1573d6000803e3d6000fd5b505050506040513d6020811015610ec757600080fd5b5051610f045760405162461bcd60e51b81526004018080602001828103825260228152602001806132156022913960400191505060405180910390fd5b610f0f8787876123c8565b979650505050505050565b610f23336121a6565b610f5e5760405162461bcd60e51b815260040180806020018281038252603281526020018061327d6032913960400191505060405180910390fd5b600f80546001600160a81b03191690556040517f1c0623b9b3fdaa174e2f472f2698def360517d0f437bbb48bad21b43b96a229f90600090a1565b610fa23361178a565b610fdd5760405162461bcd60e51b815260040180806020018281038252603481526020018061314e6034913960400191505060405180910390fd5b610fe633612429565b565b610ff1336121a6565b61102c5760405162461bcd60e51b815260040180806020018281038252603281526020018061327d6032913960400191505060405180910390fd5b610b0d81612471565b60035460ff1690565b600c5481565b6010805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156110ca5780601f1061109f576101008083540402835291602001916110ca565b820191906000526020600020905b8154815290600101906020018083116110ad57829003601f168201915b505050505081565b60095460009060ff1615611120576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b33836000600f60149054906101000a900460ff16156111fd57600f54604080516398cd9d8b60e01b81526001600160a01b03868116600483015285811660248301528481166044830152915191909216916398cd9d8b916064808301926020929190829003018186803b15801561119657600080fd5b505afa1580156111aa573d6000803e3d6000fd5b505050506040513d60208110156111c057600080fd5b50516111fd5760405162461bcd60e51b81526004018080602001828103825260228152602001806132156022913960400191505060405180910390fd5b610cda86866124b9565b611210336121a6565b61124b5760405162461bcd60e51b815260040180806020018281038252603281526020018061327d6032913960400191505060405180910390fd5b600d805460ff191660011790556040805133815290517f444c236974761ca847da19780c83fa25a0df505fada90b6c87a194760c0cf2a09181900360200190a1565b6112956119c3565b6112d4576040805162461bcd60e51b815260206004820181905260248201526000805160206131d3833981519152604482015290519081900360640190fd5b610b0d81612511565b6112e6336114f4565b6113215760405162461bcd60e51b81526004018080602001828103825260308152602001806130a66030913960400191505060405180910390fd5b60095460ff1661136f576040805162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015290519081900360640190fd5b6009805460ff191690556040805133815290517f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa9181900360200190a1565b60006113b933611e7c565b6113f45760405162461bcd60e51b81526004018080602001828103825260308152602001806131826030913960400191505060405180910390fd5b82600080600f60149054906101000a900460ff16156114d157600f54604080516398cd9d8b60e01b81526001600160a01b03868116600483015285811660248301528481166044830152915191909216916398cd9d8b916064808301926020929190829003018186803b15801561146a57600080fd5b505afa15801561147e573d6000803e3d6000fd5b505050506040513d602081101561149457600080fd5b50516114d15760405162461bcd60e51b81526004018080602001828103825260228152602001806132156022913960400191505060405180910390fd5b610cda8686612559565b60006114ee60078363ffffffff61262216565b92915050565b60006114ee60088363ffffffff61262216565b611510336121a6565b61154b5760405162461bcd60e51b815260040180806020018281038252603281526020018061327d6032913960400191505060405180910390fd5b600c819055604080513381526020810183905281517f1c9182333abe71fddddd188f90cabb1c34182de0b0ac74c87944a196460a2d6c929181900390910190a150565b6115966119c3565b6115d5576040805162461bcd60e51b815260206004820181905260248201526000805160206131d3833981519152604482015290519081900360640190fd5b6115de81612429565b610b0d33612689565b60095460ff1690565b6115f9336121a6565b6116345760405162461bcd60e51b815260040180806020018281038252603281526020018061327d6032913960400191505060405180910390fd5b610b0d81612380565b611646336121a6565b6116815760405162461bcd60e51b815260040180806020018281038252603281526020018061327d6032913960400191505060405180910390fd5b6001600160a01b0381166116dc576040805162461bcd60e51b815260206004820152601b60248201527f496e76616c696420616363657373206c69737420616464726573730000000000604482015290519081900360640190fd5b600f805460ff60a01b196001600160a01b0384166001600160a01b0319909216821716600160a01b1790915560408051918252517fe854fd23aa1cc9c07a5e4b0652c3fe1a0cbcedbd13031f17aa6641af89fbbc7f9181900360200190a150565b611746336121a6565b6117815760405162461bcd60e51b815260040180806020018281038252603281526020018061327d6032913960400191505060405180910390fd5b610b0d81612338565b60006114ee600e8363ffffffff61262216565b6117a6336121a6565b6117e15760405162461bcd60e51b815260040180806020018281038252603281526020018061327d6032913960400191505060405180910390fd5b610b0d816126d1565b610fe633612338565b6001600160a01b031660009081526004602052604090205490565b6118166119c3565b611855576040805162461bcd60e51b815260206004820181905260248201526000805160206131d3833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6118a8336114f4565b6116345760405162461bcd60e51b81526004018080602001828103825260308152602001806130a66030913960400191505060405180910390fd5b6118ec336114f4565b6119275760405162461bcd60e51b81526004018080602001828103825260308152602001806130a66030913960400191505060405180910390fd5b60095460ff1615611972576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6009805460ff191660011790556040805133815290517f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2589181900360200190a1565b6000546001600160a01b031690565b6000546001600160a01b0316331490565b60028054604080516020601f6000196101006001871615020190941685900493840181900481028201810190925282815260609390929091830182828015610b9b5780601f10610b7057610100808354040283529160200191610b9b565b611a3b33611e7c565b6117e15760405162461bcd60e51b81526004018080602001828103825260308152602001806131826030913960400191505060405180910390fd5b610fe633612471565b611a883361178a565b611ac35760405162461bcd60e51b815260040180806020018281038252603481526020018061314e6034913960400191505060405180910390fd5b610b0d81612689565b600f54600160a01b900460ff1681565b60095460009060ff1615611b2a576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b83836000600f60149054906101000a900460ff1615611c0757600f54604080516398cd9d8b60e01b81526001600160a01b03868116600483015285811660248301528481166044830152915191909216916398cd9d8b916064808301926020929190829003018186803b158015611ba057600080fd5b505afa158015611bb4573d6000803e3d6000fd5b505050506040513d6020811015611bca57600080fd5b5051611c075760405162461bcd60e51b81526004018080602001828103825260228152602001806132156022913960400191505060405180910390fd5b610f0f878787612719565b60095460009060ff1615611c60576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b33836000600f60149054906101000a900460ff1615611d3d57600f54604080516398cd9d8b60e01b81526001600160a01b03868116600483015285811660248301528481166044830152915191909216916398cd9d8b916064808301926020929190829003018186803b158015611cd657600080fd5b505afa158015611cea573d6000803e3d6000fd5b505050506040513d6020811015611d0057600080fd5b5051611d3d5760405162461bcd60e51b81526004018080602001828103825260228152602001806132156022913960400191505060405180910390fd5b610cda86866127c4565b60095460009060ff1615611d95576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b33836000600f60149054906101000a900460ff1615611e7257600f54604080516398cd9d8b60e01b81526001600160a01b03868116600483015285811660248301528481166044830152915191909216916398cd9d8b916064808301926020929190829003018186803b158015611e0b57600080fd5b505afa158015611e1f573d6000803e3d6000fd5b505050506040513d6020811015611e3557600080fd5b5051611e725760405162461bcd60e51b81526004018080602001828103825260228152602001806132156022913960400191505060405180910390fd5b610cda868661281c565b60006114ee600a8363ffffffff61262216565b611e98336121a6565b611ed35760405162461bcd60e51b815260040180806020018281038252603281526020018061327d6032913960400191505060405180910390fd5b610b0d81612429565b611ee46119c3565b611f23576040805162461bcd60e51b815260206004820181905260248201526000805160206131d3833981519152604482015290519081900360640190fd5b611f2c81612291565b610b0d33612874565b600d5460ff1681565b6000611f49336114db565b611f845760405162461bcd60e51b815260040180806020018281038252603081526020018061311e6030913960400191505060405180910390fd5b611f8e83836128bc565b604080513381526001600160a01b038516602082015280820184905290517f7d87a0d6b3a3012345cd345f3818338913ce6a164fc30d6a7e8729f8176ef2a29181900360600190a150600192915050565b611fe76119c3565b612026576040805162461bcd60e51b815260206004820181905260248201526000805160206131d3833981519152604482015290519081900360640190fd5b610fe633612997565b6120376119c3565b612076576040805162461bcd60e51b815260206004820181905260248201526000805160206131d3833981519152604482015290519081900360640190fd5b61207f81612471565b610b0d336126d1565b612091336121a6565b6120cc5760405162461bcd60e51b815260040180806020018281038252603281526020018061327d6032913960400191505060405180910390fd5b610b0d81612874565b6120dd6119c3565b61211c576040805162461bcd60e51b815260206004820181905260248201526000805160206131d3833981519152604482015290519081900360640190fd5b61212581612997565b610b0d33612511565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b612162336114db565b61219d5760405162461bcd60e51b815260040180806020018281038252603081526020018061311e6030913960400191505060405180910390fd5b610fe633612291565b60006114ee600b8363ffffffff61262216565b6121c16119c3565b612200576040805162461bcd60e51b815260206004820181905260248201526000805160206131d3833981519152604482015290519081900360640190fd5b610b0d816129df565b612212336114db565b6120cc5760405162461bcd60e51b815260040180806020018281038252603081526020018061311e6030913960400191505060405180910390fd5b612256336121a6565b611ac35760405162461bcd60e51b815260040180806020018281038252603281526020018061327d6032913960400191505060405180910390fd5b6122a260078263ffffffff612a7f16565b6040516001600160a01b038216907f90eabbc0c667db2a5029ed6bc0f5fe9f356d11684a4ca9fcfaec0e53f12b9c8e90600090a250565b60095460009060ff1615612327576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6123318383612ae6565b9392505050565b61234960088263ffffffff612a7f16565b6040516001600160a01b038216907fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e90600090a250565b61239160088263ffffffff612afc16565b6040516001600160a01b038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b60095460009060ff1615612416576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b612421848484612b7d565b949350505050565b61243a600e8263ffffffff612a7f16565b6040516001600160a01b038216907f80c0b871b97b595b16a7741c1b06fed0c6f6f558639f18ccbce50724325dc40d90600090a250565b612482600a8263ffffffff612a7f16565b6040516001600160a01b038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b60095460009060ff1615612507576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6123318383612bd4565b612522600b8263ffffffff612afc16565b6040516001600160a01b038216907f021a687fbe334e9e815cee8b399c0bc42e82356eb7f63a09ddb558a25d3dcdbd90600090a250565b600061256433611e7c565b61259f5760405162461bcd60e51b81526004018080602001828103825260308152602001806131826030913960400191505060405180910390fd5b600d5460ff161561261857600c546125c5836125b9610cf3565b9063ffffffff612c1016565b1115612618576040805162461bcd60e51b815260206004820152601d60248201527f4552433230436170456e61626c65723a20636170206578636565646564000000604482015290519081900360640190fd5b6123318383612c6a565b60006001600160a01b0382166126695760405162461bcd60e51b81526004018080602001828103825260228152602001806131f36022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b61269a600e8263ffffffff612afc16565b6040516001600160a01b038216907fac6fa858e9350a46cec16539926e0fde25b7629f84b5a72bffaae4df888ae86d90600090a250565b6126e2600a8263ffffffff612afc16565b6040516001600160a01b038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b60006127243361178a565b61275f5760405162461bcd60e51b815260040180806020018281038252603481526020018061314e6034913960400191505060405180910390fd5b61276a848484612cba565b604080513381526001600160a01b0380871660208301528516818301526060810184905290517f47cea260e2dfb95ed2ab59ad44fe2ac9cddb432afb828d2a1475936b5a2b829a9181900360800190a15060019392505050565b60095460009060ff1615612812576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6123318383612dfe565b60095460009060ff161561286a576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6123318383612e3a565b61288560078263ffffffff612afc16565b6040516001600160a01b038216907f86e57fd2b90329052917118de7c3f521f400d439b9650deaa906a25b08b9456090600090a250565b6001600160a01b0382166129015760405162461bcd60e51b81526004018080602001828103825260218152602001806132376021913960400191505060405180910390fd5b600654612914908263ffffffff612e4716565b6006556001600160a01b038216600090815260046020526040902054612940908263ffffffff612e4716565b6001600160a01b0383166000818152600460209081526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050565b6129a8600b8263ffffffff612a7f16565b6040516001600160a01b038216907f94a409f50d78dc8628b7499ba5af0848a134b9a935a59c0a45313b67f66920f890600090a250565b6001600160a01b038116612a245760405162461bcd60e51b81526004018080602001828103825260268152602001806130d66026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b612a898282612622565b612ac45760405162461bcd60e51b81526004018080602001828103825260218152602001806131b26021913960400191505060405180910390fd5b6001600160a01b0316600090815260209190915260409020805460ff19169055565b6000612af3338484612ea4565b50600192915050565b612b068282612622565b15612b58576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b6000612b8a848484612cba565b6001600160a01b038416600090815260056020908152604080832033808552925290912054612bca918691612bc5908663ffffffff612e4716565b612ea4565b5060019392505050565b3360008181526005602090815260408083206001600160a01b03871684529091528120549091612af3918590612bc5908663ffffffff612c1016565b600082820183811015612331576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6000612c7533611e7c565b612cb05760405162461bcd60e51b81526004018080602001828103825260308152602001806131826030913960400191505060405180910390fd5b612af38383612f90565b6001600160a01b038316612cff5760405162461bcd60e51b81526004018080602001828103825260258152602001806132586025913960400191505060405180910390fd5b6001600160a01b038216612d445760405162461bcd60e51b81526004018080602001828103825260238152602001806130836023913960400191505060405180910390fd5b6001600160a01b038316600090815260046020526040902054612d6d908263ffffffff612e4716565b6001600160a01b038085166000908152600460205260408082209390935590841681522054612da2908263ffffffff612c1016565b6001600160a01b0380841660008181526004602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b3360008181526005602090815260408083206001600160a01b03871684529091528120549091612af3918590612bc5908663ffffffff612e4716565b6000612af3338484612cba565b600082821115612e9e576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b6001600160a01b038316612ee95760405162461bcd60e51b81526004018080602001828103825260248152602001806132af6024913960400191505060405180910390fd5b6001600160a01b038216612f2e5760405162461bcd60e51b81526004018080602001828103825260228152602001806130fc6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260056020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038216612feb576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b600654612ffe908263ffffffff612c1016565b6006556001600160a01b03821660009081526004602052604090205461302a908263ffffffff612c1016565b6001600160a01b03831660008181526004602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a3505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373506175736572526f6c653a2063616c6c657220646f6573206e6f742068617665207468652050617573657220726f6c654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573734275726e6572526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204275726e657220726f6c654f70657261746f72526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204f70657261746f7220726f6c654d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204d696e74657220726f6c65526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572526f6c65733a206163636f756e7420697320746865207a65726f20616464726573734163636573734c6973743a2061646472657373206e6f7420617574686f72697a656445524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737343726561746f72526f6c653a2063616c6c657220646f6573206e6f742068617665207468652043726561746f7220726f6c6545524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373a265627a7a72315820488fb8377045e70d7666b3703a831446cc70a2b1b11173a6eca3aa1150b958bc64736f6c63430005100032
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000012000000000000000000000000070d5eadcb367bcf733fc98b441def1c7c5eec18700000000000000000000000000000000000000000000000000000000000000124d6f737320436172626f6e20437265646974000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044d434f3200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007f4561636820746f6b656e206973206f6e6520636172626f6e2063726564697420696e2074686520766f6c756e74617279206d61726b65742c20796f752063616e2066696e64206d6f726520696e666f726d6174696f6e20616e64206175646974206f6e20636f3263657274696669636174696f6e2e6d6f73732e656172746800
-----Decoded View---------------
Arg [0] : _name (string): Moss Carbon Credit
Arg [1] : _symbol (string): MCO2
Arg [2] : _decimals (uint8): 18
Arg [3] : _info (string): Each token is one carbon credit in the voluntary market, you can find more information and audit on co2certification.moss.earth
Arg [4] : _creator (address): 0x70D5EaDCb367Bcf733fc98B441DeF1c7c5eEC187
-----Encoded View---------------
14 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [4] : 00000000000000000000000070d5eadcb367bcf733fc98b441def1c7c5eec187
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [6] : 4d6f737320436172626f6e204372656469740000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [8] : 4d434f3200000000000000000000000000000000000000000000000000000000
Arg [9] : 000000000000000000000000000000000000000000000000000000000000007f
Arg [10] : 4561636820746f6b656e206973206f6e6520636172626f6e2063726564697420
Arg [11] : 696e2074686520766f6c756e74617279206d61726b65742c20796f752063616e
Arg [12] : 2066696e64206d6f726520696e666f726d6174696f6e20616e64206175646974
Arg [13] : 206f6e20636f3263657274696669636174696f6e2e6d6f73732e656172746800
Deployed Bytecode Sourcemap
38765:4985:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;38765:4985:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43622:123;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;43622:123:0;-1:-1:-1;;;;;43622:123:0;;:::i;:::-;;37415:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;37415:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34559:231;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;34559:231:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;30704:33;;;:::i;:::-;;;;-1:-1:-1;;;;;30704:33:0;;;;;;;;;;;;;;19743:91;;;:::i;:::-;;;;;;;;;;;;;;;;28492:196;;;:::i;40912:157::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;40912:157:0;-1:-1:-1;;;;;40912:157:0;;:::i;34019:240::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;34019:240:0;;;;;;;;;;;;;;;;;:::i;31892:199::-;;;:::i;1723:94::-;;;:::i;41948:123::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;41948:123:0;-1:-1:-1;;;;;41948:123:0;;:::i;38273:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;28007:18;;;:::i;38862:::-;;;:::i;35121:258::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;35121:258:0;;;;;;;;:::i;28257:142::-;;;:::i;41179:117::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;41179:117:0;-1:-1:-1;;;;;41179:117:0;;:::i;6737:118::-;;;:::i;32384:212::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;32384:212:0;;;;;;;;:::i;7277:109::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;7277:109:0;-1:-1:-1;;;;;7277:109:0;;:::i;4319:::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;4319:109:0;-1:-1:-1;;;;;4319:109:0;;:::i;28742:155::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;28742:155:0;;:::i;40051:163::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;40051:163:0;-1:-1:-1;;;;;40051:163:0;;:::i;5946:78::-;;;:::i;42252:122::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;42252:122:0;-1:-1:-1;;;;;42252:122:0;;:::i;31446:313::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;31446:313:0;-1:-1:-1;;;;;31446:313:0;;:::i;42503:123::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;42503:123:0;-1:-1:-1;;;;;42503:123:0;;:::i;1496:113::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;1496:113:0;-1:-1:-1;;;;;1496:113:0;;:::i;41697:122::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;41697:122:0;-1:-1:-1;;;;;41697:122:0;;:::i;4536:77::-;;;:::i;19897:110::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;19897:110:0;-1:-1:-1;;;;;19897:110:0;;:::i;13092:140::-;;;:::i;4436:92::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;4436:92:0;-1:-1:-1;;;;;4436:92:0;;:::i;6526:116::-;;;:::i;12281:79::-;;;:::i;12647:92::-;;;:::i;37617:87::-;;;:::i;2636:92::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;2636:92:0;-1:-1:-1;;;;;2636:92:0;;:::i;2736:77::-;;;:::i;1617:98::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;1617:98:0;-1:-1:-1;;;;;1617:98:0;;:::i;30744:30::-;;;:::i;33447:247::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;33447:247:0;;;;;;;;;;;;;;;;;:::i;35715:268::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;35715:268:0;;;;;;;;:::i;32909:218::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;32909:218:0;;;;;;;;:::i;2519:109::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;2519:109:0;-1:-1:-1;;;;;2519:109:0;;:::i;43064:127::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;43064:127:0;-1:-1:-1;;;;;43064:127:0;;:::i;40627:157::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;40627:157:0;-1:-1:-1;;;;;40627:157:0;;:::i;28032:22::-;;;:::i;36557:234::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;36557:234:0;;;;;;;;:::i;41361:111::-;;;:::i;40342:157::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;40342:157:0;-1:-1:-1;;;;;40342:157:0;;:::i;43372:122::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;43372:122:0;-1:-1:-1;;;;;43372:122:0;;:::i;39761:160::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;39761:160:0;-1:-1:-1;;;;;39761:160:0;;:::i;20439:134::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;20439:134:0;;;;;;;;;;:::i;7494:88::-;;;:::i;3512:111::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;3512:111:0;-1:-1:-1;;;;;3512:111:0;;:::i;13387:109::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;13387:109:0;-1:-1:-1;;;;;13387:109:0;;:::i;7394:92::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;7394:92:0;-1:-1:-1;;;;;7394:92:0;;:::i;42807:126::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;42807:126:0;-1:-1:-1;;;;;42807:126:0;;:::i;43622:123::-;3408:21;3418:10;3408:9;:21::i;:::-;3400:84;;;;-1:-1:-1;;;3400:84:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43714:23;43728:8;43714:13;:23::i;:::-;43622:123;:::o;37415:83::-;37485:5;37478:12;;;;;;;;-1:-1:-1;;37478:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37452:13;;37478:12;;37485:5;;37478:12;;37485:5;37478:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37415:83;:::o;34559:231::-;6183:7;;34723:4;;6183:7;;6182:8;6174:37;;;;;-1:-1:-1;;;6174:37:0;;;;;;;;;;;;-1:-1:-1;;;6174:37:0;;;;;;;;;;;;;;;34668:10;34680:8;30830:1;31033:18;;;;;;;;;;;31029:140;;;31076:10;;:42;;;-1:-1:-1;;;31076:42:0;;-1:-1:-1;;;;;31076:42:0;;;;;;;;;;;;;;;;;;;;;;;:10;;;;;:27;;:42;;;;;;;;;;;;;;:10;:42;;;5:2:-1;;;;30:1;27;20:12;5:2;31076:42:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;31076:42:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;31076:42:0;31068:89;;;;-1:-1:-1;;;31068:89:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34751:31;34765:8;34775:6;34751:13;:31::i;:::-;34744:38;34559:231;-1:-1:-1;;;;;;34559:231:0:o;30704:33::-;;;-1:-1:-1;;;;;30704:33:0;;:::o;19743:91::-;19814:12;;19743:91;:::o;28492:196::-;3408:21;3418:10;3408:9;:21::i;:::-;3400:84;;;;-1:-1:-1;;;3400:84:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28568:10;:18;;-1:-1:-1;;28568:18:0;;;28581:5;28630:3;:7;28657:23;;;28669:10;28657:23;;;;;;;;;;;;;28492:196::o;40912:157::-;12493:9;:7;:9::i;:::-;12485:54;;;;;-1:-1:-1;;;12485:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;12485:54:0;;;;;;;;;;;;;;;41001:23;41015:8;41001:13;:23::i;:::-;41039:22;41050:10;41039;:22::i;34019:240::-;6183:7;;34185:4;;6183:7;;6182:8;6174:37;;;;;-1:-1:-1;;;6174:37:0;;;;;;;;;;;;-1:-1:-1;;;6174:37:0;;;;;;;;;;;;;;;34143:10;34155:5;34162:3;31033:18;;;;;;;;;;;31029:140;;;31076:10;;:42;;;-1:-1:-1;;;31076:42:0;;-1:-1:-1;;;;;31076:42:0;;;;;;;;;;;;;;;;;;;;;;;:10;;;;;:27;;:42;;;;;;;;;;;;;;:10;:42;;;5:2:-1;;;;30:1;27;20:12;5:2;31076:42:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;31076:42:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;31076:42:0;31068:89;;;;-1:-1:-1;;;31068:89:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34213:38;34232:5;34239:3;34244:6;34213:18;:38::i;:::-;34206:45;34019:240;-1:-1:-1;;;;;;;34019:240:0:o;31892:199::-;3408:21;3418:10;3408:9;:21::i;:::-;3400:84;;;;-1:-1:-1;;;3400:84:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31972:18;:26;;-1:-1:-1;;;;;;32013:33:0;;;32066:17;;;;31993:5;;32066:17;31892:199::o;1723:94::-;1389:22;1400:10;1389;:22::i;:::-;1381:87;;;;-1:-1:-1;;;1381:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1782:27;1798:10;1782:15;:27::i;:::-;1723:94::o;41948:123::-;3408:21;3418:10;3408:9;:21::i;:::-;3400:84;;;;-1:-1:-1;;;3400:84:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42040:23;42054:8;42040:13;:23::i;38273:83::-;38339:9;;;;38273:83;:::o;28007:18::-;;;;:::o;38862:::-;;;;;;;;;;;;;;;-1:-1:-1;;38862:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;35121:258::-;6183:7;;35297:4;;6183:7;;6182:8;6174:37;;;;;-1:-1:-1;;;6174:37:0;;;;;;;;;;;;-1:-1:-1;;;6174:37:0;;;;;;;;;;;;;;;35242:10;35254:8;30830:1;31033:18;;;;;;;;;;;31029:140;;;31076:10;;:42;;;-1:-1:-1;;;31076:42:0;;-1:-1:-1;;;;;31076:42:0;;;;;;;;;;;;;;;;;;;;;;;:10;;;;;:27;;:42;;;;;;;;;;;;;;:10;:42;;;5:2:-1;;;;30:1;27;20:12;5:2;31076:42:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;31076:42:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;31076:42:0;31068:89;;;;-1:-1:-1;;;31068:89:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35325:46;35349:8;35359:11;35325:23;:46::i;28257:142::-;3408:21;3418:10;3408:9;:21::i;:::-;3400:84;;;;-1:-1:-1;;;3400:84:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28332:10;:17;;-1:-1:-1;;28332:17:0;28345:4;28332:17;;;28369:22;;;28380:10;28369:22;;;;;;;;;;;;;28257:142::o;41179:117::-;12493:9;:7;:9::i;:::-;12485:54;;;;;-1:-1:-1;;;12485:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;12485:54:0;;;;;;;;;;;;;;;41267:21;41279:8;41267:11;:21::i;6737:118::-;4218:20;4227:10;4218:8;:20::i;:::-;4210:81;;;;-1:-1:-1;;;4210:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6382:7;;;;6374:40;;;;;-1:-1:-1;;;6374:40:0;;;;;;;;;;;;-1:-1:-1;;;6374:40:0;;;;;;;;;;;;;;;6796:7;:15;;-1:-1:-1;;6796:15:0;;;6827:20;;;6836:10;6827:20;;;;;;;;;;;;;6737:118::o;32384:212::-;32536:4;2418:20;2427:10;2418:8;:20::i;:::-;2410:81;;;;-1:-1:-1;;;2410:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32483:3;30830:1;;31033:18;;;;;;;;;;;31029:140;;;31076:10;;:42;;;-1:-1:-1;;;31076:42:0;;-1:-1:-1;;;;;31076:42:0;;;;;;;;;;;;;;;;;;;;;;;:10;;;;;:27;;:42;;;;;;;;;;;;;;:10;:42;;;5:2:-1;;;;30:1;27;20:12;5:2;31076:42:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;31076:42:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;31076:42:0;31068:89;;;;-1:-1:-1;;;31068:89:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32564:24;32575:3;32580:7;32564:10;:24::i;7277:109::-;7333:4;7357:21;:8;7370:7;7357:21;:12;:21;:::i;:::-;7350:28;7277:109;-1:-1:-1;;7277:109:0:o;4319:::-;4375:4;4399:21;:8;4412:7;4399:21;:12;:21;:::i;28742:155::-;3408:21;3418:10;3408:9;:21::i;:::-;3400:84;;;;-1:-1:-1;;;3400:84:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28829:3;:13;;;28862:27;;;28869:10;28862:27;;;;;;;;;;;;;;;;;;;;;28742:155;:::o;40051:163::-;12493:9;:7;:9::i;:::-;12485:54;;;;;-1:-1:-1;;;12485:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;12485:54:0;;;;;;;;;;;;;;;40142:25;40158:8;40142:15;:25::i;:::-;40182:24;40195:10;40182:12;:24::i;5946:78::-;6009:7;;;;5946:78;:::o;42252:122::-;3408:21;3418:10;3408:9;:21::i;:::-;3400:84;;;;-1:-1:-1;;;3400:84:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42346:20;42357:8;42346:10;:20::i;31446:313::-;3408:21;3418:10;3408:9;:21::i;:::-;3400:84;;;;-1:-1:-1;;;3400:84:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;31552:25:0;;31544:65;;;;;-1:-1:-1;;;31544:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;31624:10;:41;;-1:-1:-1;;;;;;;;;31624:41:0;;-1:-1:-1;;;;;;31624:41:0;;;;;31680:25;-1:-1:-1;;;31680:25:0;;;;31725:26;;;;;;;;;;;;;;;;31446:313;:::o;42503:123::-;3408:21;3418:10;3408:9;:21::i;:::-;3400:84;;;;-1:-1:-1;;;3400:84:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42595:23;42609:8;42595:13;:23::i;1496:113::-;1554:4;1578:23;:10;1593:7;1578:23;:14;:23;:::i;41697:122::-;3408:21;3418:10;3408:9;:21::i;:::-;3400:84;;;;-1:-1:-1;;;3400:84:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41791:20;41802:8;41791:10;:20::i;4536:77::-;4580:25;4594:10;4580:13;:25::i;19897:110::-;-1:-1:-1;;;;;19981:18:0;19954:7;19981:18;;;:9;:18;;;;;;;19897:110::o;13092:140::-;12493:9;:7;:9::i;:::-;12485:54;;;;;-1:-1:-1;;;12485:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;12485:54:0;;;;;;;;;;;;;;;13191:1;13175:6;;13154:40;;-1:-1:-1;;;;;13175:6:0;;;;13154:40;;13191:1;;13154:40;13222:1;13205:19;;-1:-1:-1;;;;;;13205:19:0;;;13092:140::o;4436:92::-;4218:20;4227:10;4218:8;:20::i;:::-;4210:81;;;;-1:-1:-1;;;4210:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6526:116;4218:20;4227:10;4218:8;:20::i;:::-;4210:81;;;;-1:-1:-1;;;4210:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6183:7;;;;6182:8;6174:37;;;;;-1:-1:-1;;;6174:37:0;;;;;;;;;;;;-1:-1:-1;;;6174:37:0;;;;;;;;;;;;;;;6586:7;:14;;-1:-1:-1;;6586:14:0;6596:4;6586:14;;;6616:18;;;6623:10;6616:18;;;;;;;;;;;;;6526:116::o;12281:79::-;12319:7;12346:6;-1:-1:-1;;;;;12346:6:0;12281:79;:::o;12647:92::-;12687:4;12725:6;-1:-1:-1;;;;;12725:6:0;12711:10;:20;;12647:92::o;37617:87::-;37689:7;37682:14;;;;;;;-1:-1:-1;;37682:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37656:13;;37682:14;;37689:7;;37682:14;;37689:7;37682:14;;;;;;;;;;;;;;;;;;;;;;;;2636:92;2418:20;2427:10;2418:8;:20::i;:::-;2410:81;;;;-1:-1:-1;;;2410:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2736:77;2780:25;2794:10;2780:13;:25::i;1617:98::-;1389:22;1400:10;1389;:22::i;:::-;1381:87;;;;-1:-1:-1;;;1381:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1686:21;1699:7;1686:12;:21::i;30744:30::-;;;-1:-1:-1;;;30744:30:0;;;;;:::o;33447:247::-;6183:7;;33618:4;;6183:7;;6182:8;6174:37;;;;;-1:-1:-1;;;6174:37:0;;;;;;;;;;;;-1:-1:-1;;;6174:37:0;;;;;;;;;;;;;;;33573:5;33580:3;30830:1;31033:18;;;;;;;;;;;31029:140;;;31076:10;;:42;;;-1:-1:-1;;;31076:42:0;;-1:-1:-1;;;;;31076:42:0;;;;;;;;;;;;;;;;;;;;;;;:10;;;;;:27;;:42;;;;;;;;;;;;;;:10;:42;;;5:2:-1;;;;30:1;27;20:12;5:2;31076:42:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;31076:42:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;31076:42:0;31068:89;;;;-1:-1:-1;;;31068:89:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33646:40;33667:5;33674:3;33679:6;33646:20;:40::i;35715:268::-;6183:7;;35896:4;;6183:7;;6182:8;6174:37;;;;;-1:-1:-1;;;6174:37:0;;;;;;;;;;;;-1:-1:-1;;;6174:37:0;;;;;;;;;;;;;;;35841:10;35853:8;30830:1;31033:18;;;;;;;;;;;31029:140;;;31076:10;;:42;;;-1:-1:-1;;;31076:42:0;;-1:-1:-1;;;;;31076:42:0;;;;;;;;;;;;;;;;;;;;;;;:10;;;;;:27;;:42;;;;;;;;;;;;;;:10;:42;;;5:2:-1;;;;30:1;27;20:12;5:2;31076:42:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;31076:42:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;31076:42:0;31068:89;;;;-1:-1:-1;;;31068:89:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35924:51;35948:8;35958:16;35924:23;:51::i;32909:218::-;6183:7;;33064:4;;6183:7;;6182:8;6174:37;;;;;-1:-1:-1;;;6174:37:0;;;;;;;;;;;;-1:-1:-1;;;6174:37:0;;;;;;;;;;;;;;;33014:10;33026:3;30830:1;31033:18;;;;;;;;;;;31029:140;;;31076:10;;:42;;;-1:-1:-1;;;31076:42:0;;-1:-1:-1;;;;;31076:42:0;;;;;;;;;;;;;;;;;;;;;;;:10;;;;;:27;;:42;;;;;;;;;;;;;;:10;:42;;;5:2:-1;;;;30:1;27;20:12;5:2;31076:42:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;31076:42:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;31076:42:0;31068:89;;;;-1:-1:-1;;;31068:89:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33092:27;33107:3;33112:6;33092:14;:27::i;2519:109::-;2575:4;2599:21;:8;2612:7;2599:21;:12;:21;:::i;43064:127::-;3408:21;3418:10;3408:9;:21::i;:::-;3400:84;;;;-1:-1:-1;;;3400:84:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43158:25;43174:8;43158:15;:25::i;40627:157::-;12493:9;:7;:9::i;:::-;12485:54;;;;;-1:-1:-1;;;12485:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;12485:54:0;;;;;;;;;;;;;;;40716:23;40730:8;40716:13;:23::i;:::-;40754:22;40765:10;40754;:22::i;28032:::-;;;;;;:::o;36557:234::-;36661:4;7176:20;7185:10;7176:8;:20::i;:::-;7168:81;;;;-1:-1:-1;;;7168:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36682:19;36688:4;36694:6;36682:5;:19::i;:::-;36721:36;;;36732:10;36721:36;;-1:-1:-1;;;;;36721:36:0;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36779:4:0;36557:234;;;;:::o;41361:111::-;12493:9;:7;:9::i;:::-;12485:54;;;;;-1:-1:-1;;;12485:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;12485:54:0;;;;;;;;;;;;;;;41438:26;41453:10;41438:14;:26::i;40342:157::-;12493:9;:7;:9::i;:::-;12485:54;;;;;-1:-1:-1;;;12485:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;12485:54:0;;;;;;;;;;;;;;;40431:23;40445:8;40431:13;:23::i;:::-;40469:22;40480:10;40469;:22::i;43372:122::-;3408:21;3418:10;3408:9;:21::i;:::-;3400:84;;;;-1:-1:-1;;;3400:84:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43466:20;43477:8;43466:10;:20::i;39761:160::-;12493:9;:7;:9::i;:::-;12485:54;;;;;-1:-1:-1;;;12485:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;12485:54:0;;;;;;;;;;;;;;;39851:24;39866:8;39851:14;:24::i;:::-;39890:23;39902:10;39890:11;:23::i;20439:134::-;-1:-1:-1;;;;;20538:18:0;;;20511:7;20538:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;20439:134::o;7494:88::-;7176:20;7185:10;7176:8;:20::i;:::-;7168:81;;;;-1:-1:-1;;;7168:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7549:25;7563:10;7549:13;:25::i;3512:111::-;3569:4;3593:22;:9;3607:7;3593:22;:13;:22;:::i;13387:109::-;12493:9;:7;:9::i;:::-;12485:54;;;;;-1:-1:-1;;;12485:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;12485:54:0;;;;;;;;;;;;;;;13460:28;13479:8;13460:18;:28::i;7394:92::-;7176:20;7185:10;7176:8;:20::i;:::-;7168:81;;;;-1:-1:-1;;;7168:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42807:126;3408:21;3418:10;3408:9;:21::i;:::-;3400:84;;;;-1:-1:-1;;;3400:84:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7720:130;7780:24;:8;7796:7;7780:24;:15;:24;:::i;:::-;7820:22;;-1:-1:-1;;;;;7820:22:0;;;;;;;;7720:130;:::o;29786:140::-;6183:7;;29865:4;;6183:7;;6182:8;6174:37;;;;;-1:-1:-1;;;6174:37:0;;;;;;;;;;;;-1:-1:-1;;;6174:37:0;;;;;;;;;;;;;;;29889:29;29903:7;29912:5;29889:13;:29::i;:::-;29882:36;29786:140;-1:-1:-1;;;29786:140:0:o;4751:130::-;4811:24;:8;4827:7;4811:24;:15;:24;:::i;:::-;4851:22;;-1:-1:-1;;;;;4851:22:0;;;;;;;;4751:130;:::o;4621:122::-;4678:21;:8;4691:7;4678:21;:12;:21;:::i;:::-;4715:20;;-1:-1:-1;;;;;4715:20:0;;;;;;;;4621:122;:::o;29618:160::-;6183:7;;29711:4;;6183:7;;6182:8;6174:37;;;;;-1:-1:-1;;;6174:37:0;;;;;;;;;;;;-1:-1:-1;;;6174:37:0;;;;;;;;;;;;;;;29735:35;29754:4;29760:2;29764:5;29735:18;:35::i;:::-;29728:42;29618:160;-1:-1:-1;;;;29618:160:0:o;1961:136::-;2023:26;:10;2041:7;2023:26;:17;:26;:::i;:::-;2065:24;;-1:-1:-1;;;;;2065:24:0;;;;;;;;1961:136;:::o;2951:130::-;3011:24;:8;3027:7;3011:24;:15;:24;:::i;:::-;3051:22;;-1:-1:-1;;;;;3051:22:0;;;;;;;;2951:130;:::o;29934:167::-;6183:7;;30025:4;;6183:7;;6182:8;6174:37;;;;;-1:-1:-1;;;6174:37:0;;;;;;;;;;;;-1:-1:-1;;;6174:37:0;;;;;;;;;;;;;;;30049:44;30073:7;30082:10;30049:23;:44::i;3631:125::-;3689:22;:9;3703:7;3689:22;:13;:22;:::i;:::-;3727:21;;-1:-1:-1;;;;;3727:21:0;;;;;;;;3631:125;:::o;29069:266::-;29169:4;2418:20;2427:10;2418:8;:20::i;:::-;2410:81;;;;-1:-1:-1;;;2410:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29194:10;;;;29190:89;;;29242:3;;29214:24;29232:5;29214:13;:11;:13::i;:::-;:17;:24;:17;:24;:::i;:::-;:31;;29206:73;;;;;-1:-1:-1;;;29206:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;29301:26;29312:7;29321:5;29301:10;:26::i;853:203::-;925:4;-1:-1:-1;;;;;950:21:0;;942:68;;;;-1:-1:-1;;;942:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;1028:20:0;:11;:20;;;;;;;;;;;;;;;853:203::o;1825:128::-;1884:23;:10;1899:7;1884:23;:14;:23;:::i;:::-;1923:22;;-1:-1:-1;;;;;1923:22:0;;;;;;;;1825:128;:::o;2821:122::-;2878:21;:8;2891:7;2878:21;:12;:21;:::i;:::-;2915:20;;-1:-1:-1;;;;;2915:20:0;;;;;;;;2821:122;:::o;26934:274::-;27058:4;1389:22;1400:10;1389;:22::i;:::-;1381:87;;;;-1:-1:-1;;;1381:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27079:29;27089:5;27096:3;27101:6;27079:9;:29::i;:::-;27128:46;;;27143:10;27128:46;;-1:-1:-1;;;;;27128:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27196:4:0;26934:274;;;;;:::o;30109:177::-;6183:7;;30205:4;;6183:7;;6182:8;6174:37;;;;;-1:-1:-1;;;6174:37:0;;;;;;;;;;;;-1:-1:-1;;;6174:37:0;;;;;;;;;;;;;;;30229:49;30253:7;30262:15;30229:23;:49::i;29478:132::-;6183:7;;29553:4;;6183:7;;6182:8;6174:37;;;;;-1:-1:-1;;;6174:37:0;;;;;;;;;;;;-1:-1:-1;;;6174:37:0;;;;;;;;;;;;;;;29577:25;29592:2;29596:5;29577:14;:25::i;7590:122::-;7647:21;:8;7660:7;7647:21;:12;:21;:::i;:::-;7684:20;;-1:-1:-1;;;;;7684:20:0;;;;;;;;7590:122;:::o;24769:306::-;-1:-1:-1;;;;;24844:21:0;;24836:67;;;;-1:-1:-1;;;24836:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24931:12;;:23;;24948:5;24931:23;:16;:23;:::i;:::-;24916:12;:38;-1:-1:-1;;;;;24986:18:0;;;;;;:9;:18;;;;;;:29;;25009:5;24986:29;:22;:29;:::i;:::-;-1:-1:-1;;;;;24965:18:0;;;;;;:9;:18;;;;;;;;:50;;;;25031:36;;;;;;;24965:18;;25031:36;;;;;;;;;;;24769:306;;:::o;3764:133::-;3825:25;:9;3842:7;3825:25;:16;:25;:::i;:::-;3866:23;;-1:-1:-1;;;;;3866:23:0;;;;;;;;3764:133;:::o;13602:229::-;-1:-1:-1;;;;;13676:22:0;;13668:73;;;;-1:-1:-1;;;13668:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13778:6;;;13757:38;;-1:-1:-1;;;;;13757:38:0;;;;13778:6;;;13757:38;;;13806:6;:17;;-1:-1:-1;;;;;;13806:17:0;-1:-1:-1;;;;;13806:17:0;;;;;;;;;;13602:229::o;575:183::-;655:18;659:4;665:7;655:3;:18::i;:::-;647:64;;;;-1:-1:-1;;;647:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;722:20:0;745:5;722:20;;;;;;;;;;;:28;;-1:-1:-1;;722:28:0;;;575:183::o;20720:148::-;20785:4;20802:36;20811:10;20823:7;20832:5;20802:8;:36::i;:::-;-1:-1:-1;20856:4:0;20720:148;;;;:::o;317:178::-;395:18;399:4;405:7;395:3;:18::i;:::-;394:19;386:63;;;;;-1:-1:-1;;;386:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;460:20:0;:11;:20;;;;;;;;;;;:27;;-1:-1:-1;;460:27:0;483:4;460:27;;;317:178::o;21339:256::-;21428:4;21445:36;21455:6;21463:9;21474:6;21445:9;:36::i;:::-;-1:-1:-1;;;;;21521:19:0;;;;;;:11;:19;;;;;;;;21509:10;21521:31;;;;;;;;;21492:73;;21501:6;;21521:43;;21557:6;21521:43;:35;:43;:::i;:::-;21492:8;:73::i;:::-;-1:-1:-1;21583:4:0;21339:256;;;;;:::o;22004:206::-;22110:10;22084:4;22131:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;22131:32:0;;;;;;;;;;22084:4;;22101:79;;22122:7;;22131:48;;22168:10;22131:48;:36;:48;:::i;8689:181::-;8747:7;8779:5;;;8803:6;;;;8795:46;;;;;-1:-1:-1;;;8795:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;27639:143;27713:4;2418:20;2427:10;2418:8;:20::i;:::-;2410:81;;;;-1:-1:-1;;;2410:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27730:22;27736:7;27745:6;27730:5;:22::i;23419:429::-;-1:-1:-1;;;;;23517:20:0;;23509:70;;;;-1:-1:-1;;;23509:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;23598:23:0;;23590:71;;;;-1:-1:-1;;;23590:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;23694:17:0;;;;;;:9;:17;;;;;;:29;;23716:6;23694:29;:21;:29;:::i;:::-;-1:-1:-1;;;;;23674:17:0;;;;;;;:9;:17;;;;;;:49;;;;23757:20;;;;;;;:32;;23782:6;23757:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;23734:20:0;;;;;;;:9;:20;;;;;;;;;:55;;;;23805:35;;;;;;;23734:20;;23805:35;;;;;;;;;;;;;23419:429;;;:::o;22713:216::-;22824:10;22798:4;22845:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;22845:32:0;;;;;;;;;;22798:4;;22815:84;;22836:7;;22845:53;;22882:15;22845:53;:36;:53;:::i;20220:156::-;20289:4;20306:40;20316:10;20328:9;20339:6;20306:9;:40::i;9145:184::-;9203:7;9236:1;9231;:6;;9223:49;;;;;-1:-1:-1;;;9223:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;9295:5:0;;;9145:184::o;25515:335::-;-1:-1:-1;;;;;25608:19:0;;25600:68;;;;-1:-1:-1;;;25600:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;25687:21:0;;25679:68;;;;-1:-1:-1;;;25679:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;25760:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:35;;;25811:31;;;;;;;;;;;;;;;;;25515:335;;;:::o;24129:308::-;-1:-1:-1;;;;;24205:21:0;;24197:65;;;;;-1:-1:-1;;;24197:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;24290:12;;:24;;24307:6;24290:24;:16;:24;:::i;:::-;24275:12;:39;-1:-1:-1;;;;;24346:18:0;;;;;;:9;:18;;;;;;:30;;24369:6;24346:30;:22;:30;:::i;:::-;-1:-1:-1;;;;;24325:18:0;;;;;;:9;:18;;;;;;;;:51;;;;24392:37;;;;;;;24325:18;;;;24392:37;;;;;;;;;;24129:308;;:::o
Swarm Source
bzzr://488fb8377045e70d7666b3703a831446cc70a2b1b11173a6eca3aa1150b958bc
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.